/* ========================================
   SECCIONES DEL SITIO
   ======================================== */

/* Sección Sobre Nosotros */
#nosotros {
    padding-bottom: 70px;
    position: relative;
    background: #E8F4F8;
}

.about-intro {
    position: relative;
    z-index: 1;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-bottom: 60px;
}

.about-intro-text h3 {
    font-size: 1.8rem;
    color: #281F32;
    margin-bottom: 20px;
    font-weight: 600;
    padding-left: 1.5rem;
}

.about-intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid transparent;
    transition: border-left-color 0.3s ease, transform 0.3s ease;
}

.about-intro-text p:hover {
    border-left-color: var(--color-primary);
    transform: translateX(0.5rem);
}

.about-intro-text p strong {
    color: #69247C;
}

.about-intro-highlight {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(232, 244, 248, 0.5) 100%), url(../pix/fondo-hero.webp);
    background-size: cover;
    background-position: center;
    padding: 25px;
    border-left: 4px solid #B8437A;
    text-align: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, border-color 0.4s ease;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(184, 67, 122, 0.1);
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
}

.highlight-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(232, 244, 248, 0.5) 100%);
    border-radius: 10px;
    transition: opacity 0.4s ease;
    pointer-events: none;
    opacity: 0.6;
}

.highlight-box:hover::after {
    opacity: 0;
}

.highlight-box lord-icon,
.highlight-box i,
.highlight-box h4,
.highlight-box p {
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.highlight-box:hover {
    transform: translateX(8px) translateY(-4px);
    box-shadow: 0 12px 30px rgba(218, 73, 141, 0.25);
    border-left-color: #DA498D;
}

.highlight-box i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #69247C;
}

.highlight-box h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.highlight-box p {
    margin: 0;
}

.about-approach {
    margin-top: 40px;
}

.about-approach h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #281F32;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Timeline Nuestro Enfoque */
.approach-timeline {
    display: flex;
    align-items: stretch;
    position: relative;
    margin-top: 20px;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, #69247C, #DA498D, #FAC67A);
    z-index: 0;
}

.approach-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.step-node {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #69247C 0%, #DA498D 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    box-shadow: 0 4px 20px rgba(105, 36, 124, 0.35);
    border: 3px solid #E8F4F8;
    flex-shrink: 0;
}

.step-content {
    width: 100%;
    flex: 1;
    text-align: center;
    padding: 22px 16px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(105, 36, 124, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(218, 73, 141, 0.2);
}

.step-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.step-content h4 {
    color: #281F32;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .approach-timeline {
        flex-direction: column;
        align-items: stretch;
        padding-left: 16px;
    }

    .approach-timeline::before {
        top: 0;
        bottom: 0;
        left: 44px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .approach-step {
        flex-direction: row;
        align-items: flex-start;
        padding: 0 0 24px 0;
        gap: 16px;
    }

    .step-node {
        flex-shrink: 0;
    }

    .step-content {
        text-align: left;
        flex: 1;
    }
}

/* Sección Servicios */
#servicios {
    padding: 0;
    background-color: #FFFFFF;
    position: relative;
    background-image:
        linear-gradient(to bottom, #FFFFFF 0%, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0) 30%, #FFFFFF 100%),
        url('../pix/texture-puntos.svg');
    background-repeat: no-repeat, repeat;
    background-position: 0 0, top right;
}

#servicios .container {
    padding-top: var(--spacing-xl);
}

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: var(--radius-md);
    border: 2px solid #F0E6D8;
    text-align: center;
    transition: all 0.4s ease, background 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card .bg-icon {
    position: absolute;
    bottom: -100px;
    right: -120px;
    transform: rotate(-20deg);
    width: 500px;
    height: 500px;
    background-image: url(../pix/hero-icon-white.webp);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
    z-index: 4;
    transition: opacity 0.4s ease;
}

.service-card:hover .bg-icon {
    opacity: 0.15;
}

.service-card > *:not(.bg-icon) {
    position: relative;
    z-index: 3;
}

.service-card .nowrap {
    white-space: nowrap;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    transition: opacity 0.3s ease;
    pointer-events: none;
    opacity: 0;
    z-index: 2;
}

.service-card:hover::after {
    opacity: 0;
}

.service-card:nth-child(1) {
    background: linear-gradient(135deg, #69247C 0%, #DA498D 100%);
}
.service-card:nth-child(1)::before {
    background: linear-gradient(-45deg, #69247C 0%, #DA498D 100%);
}

.service-card:nth-child(2) {
    background: linear-gradient(135deg, #DA498D 0%, #FAC67A 100%);
}
.service-card:nth-child(2)::before {
    background: linear-gradient(-45deg, #DA498D 0%, #FAC67A 100%);
}

.service-card:nth-child(3) {
    background: linear-gradient(135deg, #69247C 0%, #FAC67A 100%);
}
.service-card:nth-child(3)::before {
    background: linear-gradient(-45deg, #69247C 0%, #FAC67A 100%);
}

.service-card:nth-child(4) {
    background: linear-gradient(135deg, #DA498D 0%, #F9E6CF 100%);
}
.service-card:nth-child(4)::before {
    background: linear-gradient(-45deg, #DA498D 0%, #F9E6CF 100%);
}

.service-card:nth-child(5) {
    background: linear-gradient(135deg, #69247C 0%, #D4A574 100%);
}
.service-card:nth-child(5)::before {
    background: linear-gradient(-45deg, #69247C 0%, #D4A574 100%);
}

.service-card:nth-child(6) {
    background: linear-gradient(135deg, #FAC67A 0%, #DA498D 100%);
}
.service-card:nth-child(6)::before {
    background: linear-gradient(-45deg, #FAC67A 0%, #DA498D 100%);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(218, 73, 141, 0.4);
}

.service-card i,
.service-card h3,
.service-card p {
    position: relative;
    z-index: 3;
}

.service-card i {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFFFFF;
}

.service-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.servicios-wave-divider {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    margin-top: 40px;
    z-index: 5;
}

.servicios-wave-divider svg {
    width: 100%;
    height: auto;
    display: block;
    min-height: 80px;
    margin-bottom: -1px;
}

/* Sección Contacto - Rediseño */
#contacto {
    padding: 80px 0 80px;
    background: linear-gradient(160deg, #1a1226 0%, #281F32 45%, #1f1535 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background orbs */
.contact-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.contact-orb--1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(105, 36, 124, 0.4), transparent 70%);
    top: -250px;
    right: -200px;
    animation: orbFloat1 10s ease-in-out infinite;
}

.contact-orb--2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(218, 73, 141, 0.25), transparent 70%);
    bottom: -100px;
    left: -80px;
    animation: orbFloat2 13s ease-in-out infinite;
}

.contact-orb--3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.18), transparent 70%);
    top: 40%;
    left: 35%;
    animation: orbFloat1 8s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40%       { transform: translate(25px, -30px) scale(1.06); }
    70%       { transform: translate(-15px, 20px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    35%       { transform: translate(-20px, 25px) scale(1.04); }
    65%       { transform: translate(30px, -15px) scale(0.96); }
}

/* Subtle grid overlay */
.contact-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Header */
.contact-header {
    text-align: center;
    position: relative;
    z-index: 3;
    margin-bottom: 55px;
}

.contact-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(218, 73, 141, 0.12);
    border: 1px solid rgba(218, 73, 141, 0.3);
    color: #e472a8;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.contact-tag-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    flex-shrink: 0;
    animation: statusPulse 1.8s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    50%       { opacity: 0.75; transform: scale(1.3); box-shadow: 0 0 0 5px rgba(37, 211, 102, 0); }
}

#contacto .section-title {
    color: var(--color-white);
    text-align: center;
    font-size: 3.4rem;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.contact-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.15rem;
    position: relative;
    z-index: 1;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Two-column layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 3;
    margin-bottom: 60px;
    align-items: center;
}

/* Left column */
.contact-channels-col {
    display: flex;
    flex-direction: column;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Contact card base */
.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contact-card-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 18px;
}

/* Per-channel glow colors */
.contact-card--wa .contact-card-glow {
    background: radial-gradient(ellipse at 0% 50%, rgba(37, 211, 102, 0.14), transparent 65%);
}
.contact-card--phone .contact-card-glow {
    background: radial-gradient(ellipse at 0% 50%, rgba(99, 102, 241, 0.18), transparent 65%);
}
.contact-card--email .contact-card-glow {
    background: radial-gradient(ellipse at 0% 50%, rgba(218, 73, 141, 0.18), transparent 65%);
}

.contact-card:hover .contact-card-glow { opacity: 1; }

/* Per-channel hover border */
.contact-card--wa:hover {
    border-color: rgba(37, 211, 102, 0.28);
    background: rgba(37, 211, 102, 0.04);
    transform: translateX(10px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35), -4px 0 20px rgba(37,211,102,0.15);
}
.contact-card--phone:hover {
    border-color: rgba(99, 102, 241, 0.28);
    background: rgba(99, 102, 241, 0.04);
    transform: translateX(10px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35), -4px 0 20px rgba(99,102,241,0.15);
}
.contact-card--email:hover {
    border-color: rgba(218, 73, 141, 0.28);
    background: rgba(218, 73, 141, 0.04);
    transform: translateX(10px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35), -4px 0 20px rgba(218,73,141,0.15);
}

/* Left accent bar on hover */
.contact-card--wa::before,
.contact-card--phone::before,
.contact-card--email::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18%;
    height: 64%;
    width: 3px;
    border-radius: 0 3px 3px 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.contact-card--wa::before    { background: #25D366; }
.contact-card--phone::before { background: #6366F1; }
.contact-card--email::before { background: #DA498D; }
.contact-card--wa:hover::before,
.contact-card--phone:hover::before,
.contact-card--email:hover::before { opacity: 1; }

/* Icon */
.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.contact-card--wa .contact-card-icon {
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: white;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35);
}
.contact-card--phone .contact-card-icon {
    background: linear-gradient(135deg, #4338CA, #6366F1);
    color: white;
    box-shadow: 0 6px 22px rgba(99, 102, 241, 0.35);
}
.contact-card--email .contact-card-icon {
    background: linear-gradient(135deg, #BE185D, #DA498D);
    color: white;
    box-shadow: 0 6px 22px rgba(218, 73, 141, 0.35);
}
.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(-6deg);
}

/* Card body text */
.contact-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.contact-card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
}
.contact-card-value {
    font-size: 1rem;
    color: rgba(255,255,255,0.88);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.contact-card-cta {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
    margin-top: 2px;
}
.contact-card-cta i { transition: transform 0.3s ease; font-size: 0.72rem; }
.contact-card:hover .contact-card-cta { color: rgba(255,255,255,0.75); }
.contact-card:hover .contact-card-cta i { transform: translateX(4px); }

/* Badge on WhatsApp card */
.contact-card-badge {
    position: absolute;
    top: 11px;
    right: 14px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
    font-size: 0.68rem;
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

/* Right column: chat info panel */
.contact-info-col {
    display: flex;
    align-items: stretch;
}

.contact-info-panel {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    padding: 30px 28px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Top shimmer line */
.contact-info-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(218, 73, 141, 0.7), transparent);
}

/* Corner glow */
.contact-info-panel::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(218, 73, 141, 0.15), transparent 70%);
    pointer-events: none;
}

/* Panel header (avatar + name + status) */
.contact-info-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-info-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #69247C, #DA498D);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(218, 73, 141, 0.35);
}
.contact-info-name {
    font-weight: 700;
    color: white;
    font-size: 0.98rem;
}
.contact-info-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    margin-top: 3px;
}
.contact-status-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    flex-shrink: 0;
    animation: statusPulse 1.8s ease-in-out infinite;
}

/* Chat bubbles */
.contact-chat-bubbles {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.chat-bubble {
    max-width: 88%;
    padding: 11px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.55;
}

.chat-bubble--received {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.88);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    animation: bubbleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.chat-bubble--received:nth-child(2) {
    animation-delay: 0.15s;
}

@keyframes bubbleIn {
    from { opacity: 0; transform: translateY(12px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-bubble--typing {
    background: rgba(255, 255, 255, 0.06);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 14px 18px;
    animation: bubbleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}
.chat-bubble--typing span {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.45);
    border-radius: 50%;
    animation: typingDot 1.4s ease-in-out infinite;
}
.chat-bubble--typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-bubble--typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
    30%           { transform: translateY(-5px); opacity: 1; }
}

/* Info stats */
.contact-info-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-info-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.86rem;
}
.contact-info-stat i {
    color: #DA498D;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Social section */
.contact-social {
    text-align: center;
    position: relative;
    z-index: 3;
}

.social-label {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.78rem;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #69247C, #DA498D);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 50%;
}

.social-icon i { position: relative; z-index: 1; }

.social-icon:hover {
    color: white;
    transform: translateY(-5px) scale(1.12);
    box-shadow: 0 14px 32px rgba(218, 73, 141, 0.45);
    border-color: transparent;
}
.social-icon:hover::before { opacity: 1; }

/* Responsive */
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-info-col {
        order: -1;
    }
}

@media (max-width: 768px) {
    #contacto .section-title { font-size: 2.4rem; }
    .contact-card { padding: 18px 20px; }
    .contact-card-value { font-size: 0.92rem; }
    .contact-info-panel { padding: 24px 20px; }
}

/* Sección CTA Nova */
#nova-cta {
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

/* Capa adicional de gradiente diagonal para más dinamismo */
#nova-cta::backdrop {
    background: linear-gradient(45deg,
        rgba(218, 73, 141, 0.05) 0%,
        transparent 30%,
        rgba(250, 198, 122, 0.03) 70%,
        transparent 100%);
}


/* Decoraciones de fondo - Elemento 2 Púrpura inferior izquierda */
#nova-cta::after {
    content: '';
    position: absolute;
    bottom: -35%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle at 70% 70%,
        rgba(105, 36, 124, 0.25) 0%,
        rgba(45, 27, 78, 0.15) 30%,
        rgba(105, 36, 124, 0.08) 50%,
        transparent 75%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(3px);
}

.nova-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    background: linear-gradient(135deg,
        rgba(105, 36, 124, 0.2) 0%,
        rgba(218, 73, 141, 0.15) 25%,
        rgba(45, 27, 78, 0.1) 50%,
        rgba(218, 73, 141, 0.12) 75%,
        rgba(105, 36, 124, 0.15) 100%);
    padding: 60px 50px;
    border-radius: 20px;
    border: 2px solid rgba(218, 73, 141, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 40px rgba(218, 73, 141, 0.1);
}

.nova-cta-text h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 4px 15px rgba(218, 73, 141, 0.3);
    letter-spacing: -0.5px;
}

.nova-cta-text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-cta {
    background: linear-gradient(135deg, #DA498D 0%, #FAC67A 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(218, 73, 141, 0.3);
    z-index: 1;
}

/* Sombra de color debajo */
.btn-cta::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 30px;
    background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(218, 73, 141, 0.5) 0%, transparent 80%);
    border-radius: 50%;
    filter: blur(8px);
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

/* Glow effect */
.btn-cta::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, rgba(218, 73, 141, 0.5) 0%, rgba(250, 198, 122, 0.3) 100%);
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    filter: blur(15px);
    transition: opacity 0.4s ease;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(218, 73, 141, 0.4);
    background: linear-gradient(135deg, #e55a9e 0%, #ffd699 100%);
}

.btn-cta:hover::before {
    height: 50px;
    background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(218, 73, 141, 0.7) 0%, transparent 80%);
}

.btn-cta:hover::after {
    opacity: 1;
}

.btn-cta:active {
    transform: translateY(-2px);
}

.btn-cta i {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Prevenir que los estilos globales de <a> afecten al botón CTA */
.btn-cta,
.btn-cta:link,
.btn-cta:visited,
.btn-cta:hover,
.btn-cta:active {
    color: white !important;
    text-decoration: none;
}

/* Responsive para nova-cta */
@media (max-width: 768px) {
    #nova-cta {
        padding: 60px 0;
    }

    .nova-cta-content {
        flex-direction: column;
        text-align: center;
        padding: 45px 30px;
        gap: var(--spacing-md);
    }

    .nova-cta-text h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .nova-cta-text p {
        font-size: 1rem;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }

    #nova-cta::before {
        width: 500px;
        height: 500px;
        top: -50%;
        right: -40%;
    }

    #nova-cta::after {
        width: 450px;
        height: 450px;
        bottom: -50%;
        left: -30%;
    }
}

/* Footer */
footer {
    background-color: #000000;
    color: var(--color-white);
    text-align: center;
    padding: var(--spacing-sm) 0;
}

/* Botones "Ver más" en tarjetas de servicios */
.service-card-cta {
    margin-top: 1rem;
}

.btn-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
    font-size: 0.9rem;
}

.btn-link:hover {
    gap: 0.8rem;
}

.btn-link i {
    font-size: 0.8rem;
}

/* Página Nosotros */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.mv-card {
    padding: 2rem;
    text-align: center;
}

.mv-card h3 {
    margin: 1rem 0 0.5rem;
    color: var(--color-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-item i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* Índice de Servicios */
.services-index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.service-index-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-index-card h3 {
    margin: 0;
}

.service-index-card h3 a {
    color: var(--color-text);
    text-decoration: none;
}

.service-index-card h3 a:hover {
    color: var(--color-primary);
}

/* Página de Servicio */
.service-content {
    line-height: 1.8;
}

.service-content h3 {
    margin: 2rem 0 1rem;
    color: var(--color-primary);
}

.service-features-list {
    list-style: none;
    padding: 0;
}

.service-features-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.service-features-list li i {
    position: absolute;
    left: 0;
    color: var(--color-primary);
    top: 0.9rem;
}

.benefits-grid, .usecases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.benefit-card, .usecase-card {
    padding: 2rem;
    text-align: center;
}

.benefit-card h4, .usecase-card h4 {
    margin: 1rem 0 0.5rem;
    color: var(--color-primary);
}

.process-steps {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    counter-reset: step;
}

.process-steps li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 1.1rem;
}

/* Página Consultoría */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.reason-card {
    padding: 2rem;
    text-align: center;
}

.reason-card h4 {
    margin: 1rem 0 0.5rem;
    color: var(--color-primary);
}

.deliverables-list {
    list-style: none;
    max-width: 600px;
    margin: 2rem auto;
    padding: 0;
}

.deliverables-list li {
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--color-primary);
    margin: 1rem 0;
    background: var(--color-bg-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.deliverables-list li i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* Footer */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
    text-align: left;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--color-white);
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin: 0.5rem 0;
}

.footer-col a {
    color: var(--color-gray-light, #aaa);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--color-primary);
}

/* Ajuste para subpáginas */
main#main {
    padding-top: 0;
}

#main {
    padding-top: 0;
}

section {
    padding: 4rem 0;
}

section#descripcion,
section#beneficios,
section#casos-uso,
section#proceso,
section#historia,
section#mision-vision,
section#enfoque,
section#valores,
section#entrega {
    padding: 4rem 0;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--color-secondary);
}

.breadcrumbs span {
    color: var(--color-gray);
}

.breadcrumbs .separator {
    color: var(--color-gray-light);
    margin: 0 0.25rem;
}

.breadcrumbs .current {
    color: var(--color-text);
    font-weight: 500;
}

/* Botón secundario */
.btn-secondary {
    background: transparent !important;
    border: 2px solid var(--color-primary);
    color: var(--color-primary) !important;
}

.btn-secondary:hover {
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
}

/* ========================================
   SECCIÓN FAQ
   ======================================== */
#faq {
    padding: 80px 0;
    background: linear-gradient(180deg, #f3edf7 0%, #ffffff 100%);
}

.faq-list {
    max-width: 820px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(105, 36, 124, 0.15);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow var(--transition-fast);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(105, 36, 124, 0.12);
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    list-style: none;
    gap: 12px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-secondary);
    flex-shrink: 0;
    transition: transform var(--transition-fast);
    line-height: 1;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item[open] {
    border-color: rgba(105, 36, 124, 0.3);
}

.faq-item[open] summary {
    border-bottom: 1px solid rgba(105, 36, 124, 0.1);
}

.faq-answer {
    padding: 18px 24px 22px;
    color: var(--color-text-light);
    font-size: 0.98rem;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .faq-item summary { font-size: 0.97rem; padding: 16px 18px; }
    .faq-answer { padding: 14px 18px 18px; }
}
