/* Fondo total con tu imagen */
body {
    margin: 0;
    padding: 40px 20px;
    background: url('https://laonda.agency/new/assets/images/fondo_op57.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Estilos generales */
a {
    text-decoration: none;
}

/* Bloques de secciones */
section {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
}

/* Primer bloque: encabezado y CTA */
.header-section h2 {
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.header-section p {
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 1rem;
    font-size: 1.1rem;
    font-style: italic;
}
.header-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.btn-primary {
    background-color: #4fcdc5;
    padding: 0.75rem 2rem;
    font-weight: 700;
    border-radius: 9999px;
    box-shadow: 0 10px 20px rgba(79, 205, 197, 0.4);
    color: black;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #3ca9a1;
    box-shadow: 0 10px 25px rgba(79, 205, 197, 0.6);
}
.btn-secondary {
    border: 1px solid #7b7b7b;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background-color: #333;
}
.header-image {
    margin-top: 3rem;
    max-width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 0 30px rgba(79, 205, 197, 0.25);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Tarjetas cristal (glass) para bloques intermedios */
.glass-container {
    background: linear-gradient(145deg, rgba(13, 16, 33, 0.4), rgba(8, 10, 24, 0.7));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 40px;
    padding: 2rem;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.7);
    color: #ddd;
}
.glass-card-inner {
    background: rgba(5, 5, 15, 0.5);
    border: 1px solid rgba(79, 209, 197, 0.1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.7);
    border-radius: 32px;
    overflow: hidden;
    padding: 1rem;
}

/* Sección con imágenes flotantes */
.image-glow-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.image-glow-container::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(79, 209, 197, 0.15) 0%, rgba(5, 5, 16, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
}
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.01); }
}
.animate-float-graphic {
    animation: float 6s ease-in-out infinite;
}

/* Contenedor flex para paneles "No hacemos" / "Soluciones" */
.panel-container {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}
.panel-card {
    flex: 1;
    min-width: 320px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    color: white;
    display: flex;
    flex-direction: column;
}
.panel-pink {
    border: 1px solid rgba(255, 45, 149, 0.3);
    box-shadow: 0 0 20px rgba(255, 45, 149, 0.1);
}
.panel-blue {
    border: 1px solid rgba(0, 242, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
}
h2.panel-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.2;
}
.pink-text {
    color: #ff2d95;
}

.no-item {
    display: flex;
    gap: 15px;
    align-items: start;
    margin-bottom: 1.5rem;
}
.icon-box {
    position: relative;
    min-width: 50px;
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.panel-pink .icon-box i {
    font-size: 28px;
    color: white;
    filter: drop-shadow(0 0 8px #ff2d95);
}
.panel-pink .strike {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ff2d95;
    left: 0;
    top: 50%;
    transform: rotate(-45deg);
    box-shadow: 0 0 8px #ff2d95;
}
.text-content b {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.2rem;
}
.text-content p {
    font-size: 0.9rem;
    margin: 0;
    color: #aaa;
}

.inner-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.solution-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}
.panel-blue .solution-item i {
    font-size: 22px;
    color: white;
    filter: drop-shadow(0 0 8px #00f2ff);
    width:30px;
    text-align: center;
}
.btn-agenda {
    margin-top: auto;
    background: transparent;
    border: 1px solid #00f2ff;
    color: white;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    transition: 0.3s ease;
    cursor: pointer;
}
.btn-agenda:hover {
    background: #00f2ff;
    color: black;
    box-shadow: 0 0 20px #00f2ff;
}

.footer-text {
    margin-top: 60px;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    opacity: 0.9;
}

/* Preguntas frecuentes y CTA bloque final */
:root {
    --bg-base: #030508;
    --text-color: #fff;
    --sub-text-color: #b0b0b0;
    --cyan-neon: #00f2ff;
    --cyan-glow: rgba(0, 242, 255, 0.5);
    --pink-neon: #ff00ff;
    --pink-glow: rgba(255, 0, 255, 0.5);
    --card-bg: rgba(255,255,255,0.03);
    --border-color: rgba(255,255,255,0.1);
    --separator-pink: #ff00ff;
}
.main-container {
    max-width: 1000px;
    margin: 0 auto 60px;
    background: rgba(255,255,255,0.01);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
    padding-bottom: 0;
}
.faq-section {
    padding: 40px;
    color: var(--text-color);
}
.faq-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 30px;
}
.pink-highlight {
    color: var(--pink-neon);
    text-shadow: 0 0 10px var(--pink-glow);
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.faq-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}
.faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.1);
    border-color: rgba(0, 242, 255, 0.3);
}
.card-icon-container {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 0 10px var(--cyan-glow));
}
.card-content h3 {
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    font-weight: 600;
    line-height: 1.2;
}
.card-content p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--sub-text-color);
    line-height: 1.4;
}
.neon-separator {
    height: 2px;
    background-color: var(--separator-pink);
    box-shadow: 0 0 15px 2px var(--pink-glow);
    width: 100%;
}
.cta-section {
    padding: 50px 40px;
    text-align: center;
    background: linear-gradient(180deg, #030508 0%, #061512 100%);
    color: var(--text-color);
}
.cta-main-text {
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.cta-sub-text {
    font-size: 1.1rem;
    color: var(--sub-text-color);
    margin-bottom: 30px;
    line-height: 1.4;
}
.btn-agenda {
    padding: 12px 30px;
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--cyan-neon);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--cyan-glow);
    display: inline-block;
    cursor: pointer;
}
.btn-agenda:hover {
    background-color: var(--cyan-neon);
    color: #000;
    box-shadow: 0 0 20px 5px var(--cyan-glow);
    transform: scale(1.03);
}

.final-footer {
    text-align: center;
    font-size: 1rem;
    color: var(--sub-text-color);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Responsivo adaptativo */
@media (max-width: 768px) {
    .panel-container {
        flex-direction: column;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .header-section h2 {
        font-size: 2rem;
    }
    .cta-main-text {
        font-size: 1.8rem;
    }
    section {
        padding: 0 1.5rem 4rem;
    }
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
    }
}