
        /* ========== VARIABLES ========== */
        :root {
            --color-primary: #1A252F;
            --color-secondary: #34495E;
            --color-accent: #C9A35C;
            --color-white: #1A252F;
            --color-gray-light: #34495E;
            --color-gray: #95A5A6;
            --color-gray-dark: #BDC3C7;
            --color-bg-dark: #1A252F;
            --color-bg-darker: #1A252F;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Cormorant Garamond', serif;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
            --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.24);
        }

        /* ========== RESET ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-primary);
            color: #ECF0F1;
            background-color: #1A252F;
            line-height: 1.6;
            overflow-x: hidden;
            font-weight: 400;
            letter-spacing: 0.01em;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* ========== UTILITIES ========== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section__subtitle {
            display: block;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 3.5px;
            color: #C9A35C;
            margin-bottom: 1.25rem;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }

        .section__title {
            font-family: var(--font-secondary);
            font-size: 3rem;
            font-weight: 600;
            color: #ECF0F1;
            margin-bottom: 1.5rem;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        .section__description {
            font-size: 1.125rem;
            color: #95A5A6;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
            font-weight: 400;
        }

        .section__header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.25rem 2.5rem;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 0;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
        }

        .btn--primary {
            background-color: #C9A35C;
            color: #1A252F;
            box-shadow: 0 4px 16px rgba(201, 163, 92, 0.3);
        }

        .btn--primary:hover {
            background-color: #D4AE6D;
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(201, 163, 92, 0.4);
        }

        .btn--secondary {
            background-color: transparent;
            color: #C9A35C;
            border: 2px solid #C9A35C;
        }

        .btn--secondary:hover {
            background-color: #C9A35C;
            color: #1A252F;
        }

        .btn--large {
            padding: 1.25rem 3rem;
            font-size: 1rem;
        }

        .btn--full {
            width: 100%;
            justify-content: center;
        }

        /* ========== LOGO ========== */
        .logo-wrapper {
            display: flex;
            align-items: center;
        }

        .logo-wrapper img {
            height: 80px;
            width: auto;
            filter: brightness(0) saturate(100%) invert(74%) sepia(21%) saturate(736%) hue-rotate(359deg) brightness(92%) contrast(88%);
            transition: var(--transition);
        }

        .header.scrolled .logo-wrapper img {
            filter: brightness(0) saturate(100%) invert(74%) sepia(21%) saturate(736%) hue-rotate(359deg) brightness(92%) contrast(88%);
        }

        /* ========== HEADER ========== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: transparent;
            z-index: 1000;
            transition: var(--transition);
        }

        .header.scrolled {
            background-color: #1A252F;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .nav {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 110px;
            padding: 1rem 0;
            gap: 3rem;
        }

        .nav__list {
            display: flex;
            gap: 3rem;
            align-items: center;
        }

        .nav__link {
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 1px;
            color: #FFFFFF;
            transition: var(--transition);
            position: relative;
        }

        .header.scrolled .nav__link {
            color: #FFFFFF;
        }

        .nav__link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #FFFFFF;
            transition: var(--transition);
        }

        .header.scrolled .nav__link::after {
            background-color: #C9A35C;
        }

        .nav__link:hover::after {
            width: 100%;
        }

        .nav__link--cta {
            background-color: #C9A35C;
            color: #1A252F !important;
            padding: 0.75rem 1.5rem;
            border-radius: 0;
            border: 2px solid #C9A35C;
        }

        .nav__link--cta::after {
            display: none;
        }

        .nav__link--cta:hover {
            background-color: transparent;
            color: #C9A35C !important;
            border-color: #C9A35C;
        }

        .nav__toggle,
        .nav__close {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #C9A35C;
        }

        .header.scrolled .nav__toggle,
        .header.scrolled .nav__close {
            color: #C9A35C;
        }

        /* ========== HERO SECTION ========== */
        .hero {
            padding: 150px 0 60px;
            position: relative;
            min-height: 100vh;
            background-color: #1A252F;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(rgba(15, 20, 25, 0.92), rgba(26, 37, 47, 0.88)),
                url('./estudio.jpg') center/cover no-repeat;
            z-index: 0;
            
        }

        .hero__container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .hero__content {
            text-align: center;
        }

        .hero__subtitle {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 2px;
            color: #C9A35C;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .hero__title {
            font-family: var(--font-secondary);
            font-size: 3.5rem;
            font-weight: 600;
            color: #ECF0F1;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .hero__description {
            font-size: 1.25rem;
            color: #95A5A6;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .hero__buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero__image {
            display: none;
        }

        /* Stats */
        .stats-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #D4AE6D 0%, #C9A35C 100%);
        }

        .stats-section .section__subtitle,
        .cta .section__subtitle {
            color: #1A252F;
        }

        .stats-section .section__subtitle::after,
        .cta .section__subtitle::after {
            background: linear-gradient(90deg, #1A252F 0%, transparent 100%);
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 0;
            padding: 0;
            border-top: none;
            position: relative;
            z-index: 2;
        }

        .stat {
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .stat.aos-animate {
            opacity: 1;
            transform: translateY(0);
        }

        .stat__number {
            font-family: var(--font-secondary);
            font-size: 3.5rem;
            font-weight: 400;
            color: #1A252F;
            margin-bottom: 1rem;
        }

        .stat__label {
            font-size: 1rem;
            color: #1A252F;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
            line-height: 1.4;
        }

        /* ========== SERVICES SECTION ========== */
        .services {
            padding: 100px 0;
            background-color: #1A252F;
            position: relative;
        }

        .services__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background-color: #0F1419;
            padding: 3.5rem 2.5rem;
            border-radius: 0;
            transition: var(--transition);
            border: 1px solid rgba(201, 163, 92, 0.2);
            border-left: 3px solid #C9A35C;
            opacity: 0;
            transform: translateY(30px);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(201, 163, 92, 0.05), transparent);
            transition: left 0.5s;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card.aos-animate {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
            border-color: #C9A35C;
            border-left-width: 5px;
        }

        .service-card__icon {
            width: 85px;
            height: 85px;
            background: linear-gradient(135deg, #C9A35C 0%, #D4AE6D 100%);
            color: #1A252F;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0;
            font-size: 2.5rem;
            margin: 0 auto 2rem;
            transition: var(--transition);
            box-shadow: 0 6px 20px rgba(201, 163, 92, 0.3);
        }

        .service-card:hover .service-card__icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 30px rgba(201, 163, 92, 0.5);
        }

        .service-card__title {
            font-family: var(--font-secondary);
            font-size: 1.75rem;
            font-weight: 600;
            color: #ECF0F1;
            margin-bottom: 1.25rem;
            letter-spacing: -0.01em;
            line-height: 1.3;
        }

        .service-card__description {
            color: #BDC3C7;
            margin-bottom: 2rem;
            line-height: 1.8;
            font-size: 0.9375rem;
        }

        .service-card__link {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 600;
            font-size: 0.8125rem;
            color: #C9A35C;
            transition: var(--transition);
            justify-content: center;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }

        .service-card__link:hover {
            gap: 1.25rem;
            color: #D4AE6D;
        }

        /* ========== ABOUT SECTION ========== */
        .about {
            padding: 120px 0;
            margin-top: 0;
            margin-bottom: 80px;
            position: relative;
            background: 
                linear-gradient(rgba(15, 20, 25, 0.85), rgba(26, 37, 47, 0.80)),
                url('./hero.png') center/cover no-repeat fixed;
            border-top: 5px solid #C9A35C;
            border-bottom: 5px solid #C9A35C;
        }

        .about__grid {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .about__image {
            display: none;
        }

        .about__content {
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.8s ease;
            text-align: center;
        }

        .about__content.aos-animate {
            opacity: 1;
            transform: translateX(0);
        }

        .about__content .section__subtitle {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .about__content .section__title {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .about__text {
            color: #95A5A6;
            margin-bottom: 2.5rem;
            line-height: 1.8;
            font-size: 1.0625rem;
        }

        .about__features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
            justify-items: center;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 600;
            font-size: 0.875rem;
        }

        .feature i {
            color: #C9A35C;
            font-size: 1.25rem;
        }

        /* ========== TEAM SECTION ========== */
        .team {
            padding: 60px 0 120px;
            background-color: #1A252F;
            position: relative;
            margin-top: 80px;
        }

        .team__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .team-card {
            background-color: #0F1419;
            border-radius: 0;
            overflow: hidden;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            border: 2px solid rgba(201, 163, 92, 0.2);
            border-left: 4px solid #C9A35C;
        }

        .team-card.aos-animate {
            opacity: 1;
            transform: translateY(0);
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(201, 163, 92, 0.4);
        }

        .team-card__image {
            position: relative;
            overflow: hidden;
            height: 400px;
        }

        .team-card__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .team-card:hover .team-card__image img {
            transform: scale(1.05);
        }

        .team-card__overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(13, 13, 13, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }

        .team-card:hover .team-card__overlay {
            opacity: 1;
        }

        .team-card__contact {
            background-color: #C9A35C;
            color: #1A252F;
            padding: 1rem 2rem;
            border-radius: 0;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
            border: 2px solid #C9A35C;
        }

        .team-card__contact:hover {
            background-color: transparent;
            color: #C9A35C;
            border-color: #C9A35C;
        }

        .team-card__content {
            padding: 2rem;
            text-align: center;
        }

        .team-card__role {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            color: #C9A35C;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .team-card__name {
            font-family: var(--font-secondary);
            font-size: 1.75rem;
            font-weight: 600;
            color: #ECF0F1;
            margin-bottom: 0.5rem;
        }

        .team-card__specialty {
            font-weight: 600;
            color: #BDC3C7;
            margin-bottom: 1rem;
        }

        .team-card__description {
            color: #95A5A6;
            line-height: 1.8;
        }

        /* ========== CTA SECTION ========== */
        .cta {
            padding: 0 0 100px 0;
            background: none;
            color: #ECF0F1;
            position: relative;
            margin: 0;
            border: none;
        }

        .cta__content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
            position: relative;
            z-index: 1;
            padding-top: 50px;
        }

        .cta__content.aos-animate {
            opacity: 1;
            transform: translateY(0);
        }

        .cta__title {
            font-family: var(--font-secondary);
            font-size: 3rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #ECF0F1;
        }

        .cta__description {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            color: #95A5A6;
        }

        .cta .btn--primary {
            background-color: #C9A35C;
            color: #1A252F;
            border: 2px solid #C9A35C;
        }

        .cta .btn--primary:hover {
            background-color: transparent;
            color: #C9A35C;
            border-color: #C9A35C;
        }

        /* ========== CONTACT SECTION ========== */
        .contact {
            padding: 100px 0;
            background-color: #1A252F;
            position: relative;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(rgba(15, 20, 25, 0.94), rgba(26, 37, 47, 0.90)),
                url('./estudioBN.jpg') center/cover no-repeat;
            z-index: 0;
        }

        .contact .container {
            position: relative;
            z-index: 1;
        }

        /* ========== GOOGLE MAPS SECTION ========== */
        .map-section {
            padding: 0;
            background-color: #0F1419;
        }

        .map-container {
            width: 100%;
            height: 500px;
            position: relative;
            background-color: #0F1419;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: invert(90%) hue-rotate(180deg) saturate(0.7);
        }

        .contact__grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 4rem;
            position: relative;
            z-index: 2;
        }

        .contact__form {
            background-color: #0F1419;
            padding: 3rem;
            border-radius: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.8s ease;
            border: 2px solid rgba(201, 163, 92, 0.3);
            border-left: 5px solid #C9A35C;
            position: relative;
            z-index: 2;
        }

        .contact__form.aos-animate {
            opacity: 1;
            transform: translateX(0);
        }

        .form__group {
            margin-bottom: 1.5rem;
        }

        .form__row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form__group label {
            display: block;
            font-weight: 600;
            color: #C9A35C;
            margin-bottom: 0.5rem;
        }

        .form__group input,
        .form__group select,
        .form__group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(201, 163, 92, 0.3);
            border-radius: 0;
            font-family: var(--font-primary);
            font-size: 1rem;
            transition: var(--transition);
            background-color: #1A252F;
            color: #C9A35C;
        }

        .form__group input:focus,
        .form__group select:focus,
        .form__group textarea:focus {
            outline: none;
            border-color: #C9A35C;
            background-color: #1A252F;
            box-shadow: 0 0 0 3px rgba(201, 163, 92, 0.2);
        }

        .form__group textarea {
            resize: vertical;
        }

        .contact__info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.8s ease;
            position: relative;
            z-index: 2;
        }

        .contact__info.aos-animate {
            opacity: 1;
            transform: translateX(0);
        }

        .contact-info-card {
            background-color: #0F1419;
            padding: 2rem;
            border-radius: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            text-align: center;
            border: 2px solid rgba(201, 163, 92, 0.2);
            border-left: 5px solid #C9A35C;
            transition: var(--transition);
        }

        .contact-info-card:hover {
            border-color: #1A252F;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(201, 163, 92, 0.2);
        }

        .contact-info-card__icon {
            width: 50px;
            height: 50px;
            background-color: #C9A35C;
            color: #1A252F;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0;
            font-size: 1.5rem;
            margin: 0 auto 1rem;
        }

        .contact-info-card h4 {
            font-size: 1.125rem;
            font-weight: 600;
            color: #ECF0F1;
            margin-bottom: 0.5rem;
        }

        .contact-info-card p {
            color: #95A5A6;
            line-height: 1.8;
        }

        .contact-info-card a {
            color: #C9A35C;
            font-weight: 600;
            transition: var(--transition);
        }

        .contact-info-card a:hover {
            color: #D4AE6D;
        }

        /* ========== FOOTER ========== */
        .footer {
            background-color: var(--color-bg-darker);
            color: #ECF0F1;
            padding: 4rem 0 2rem;
            border-top: 3px solid #C9A35C;
        }

        .footer .logo-wrapper img {
            filter: brightness(0) saturate(100%) invert(74%) sepia(21%) saturate(736%) hue-rotate(359deg) brightness(92%) contrast(88%);
        }

        .footer__grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer__text {
            color: #95A5A6;
            line-height: 1.8;
            margin-top: 1rem;
        }

        .footer__title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer__links li,
        .footer__contact li {
            margin-bottom: 0.75rem;
        }

        .footer__links a,
        .footer__contact li {
            color: #95A5A6;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer__links a:hover {
            color: #1A252F;
        }

        .footer__contact i {
            color: #C9A35C;
        }

        .footer__bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 3px solid #C9A35C;
        }

        .footer__bottom p {
            color: #95A5A6;
            font-size: 0.875rem;
        }

        /* ========== FLOATING WHATSAPP ========== */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: #FFFFFF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: var(--transition);
            z-index: 999;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
        }

        /* ========== WHATSAPP MODAL ========== */
        .whatsapp-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .whatsapp-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .whatsapp-modal__content {
            background-color: #1A252F;
            border-radius: 0;
            max-width: 550px;
            width: 90%;
            overflow: hidden;
            transform: scale(0.9);
            transition: var(--transition);
            border: 3px solid #C9A35C;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .whatsapp-modal.active .whatsapp-modal__content {
            transform: scale(1);
        }

        .whatsapp-modal__header {
            background-color: #C9A35C;
            color: #1A252F;
            padding: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 3px solid #1A252F;
        }

        .whatsapp-modal__header h3 {
            font-size: 1.375rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .whatsapp-modal__close {
            background: none;
            border: none;
            color: #1A252F;
            font-size: 1.75rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .whatsapp-modal__close:hover {
            transform: rotate(90deg);
            color: #1A252F;
        }

        .whatsapp-modal__body {
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            background-color: #1A252F;
        }

        .whatsapp-option {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 2rem;
            background-color: #34495E;
            border-radius: 0;
            transition: var(--transition);
            border-left: 5px solid #C9A35C;
            border: 2px solid #4A5F7F;
            border-left: 5px solid #C9A35C;
        }

        .whatsapp-option:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            background-color: rgba(0, 0, 0, 0.02);
            border-left-color: #25D366;
        }

        .whatsapp-option__icon {
            width: 65px;
            height: 65px;
            background-color: rgba(0, 0, 0, 0.05);
            color: #1A252F;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            flex-shrink: 0;
            border: 2px solid #C9A35C;
        }

        .whatsapp-option__info {
            flex: 1;
        }

        .whatsapp-option__info h4 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #ECF0F1;
            margin-bottom: 0.5rem;
        }

        .whatsapp-option__info p {
            font-size: 0.875rem;
            color: #95A5A6;
            font-weight: 600;
        }

        .whatsapp-option__whatsapp {
            font-size: 2.25rem;
            color: #25D366;
        }

        /* Ajuste para que la imagen cubra el contenedor del modal */
        .whatsapp-option__icon {
            overflow: hidden; /* Evita que la imagen se salga del borde */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .whatsapp-option__icon img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Mantiene la proporción de la cara sin estirarla */
            display: block;
        }

        /* ========== FALLOS + CTA WRAPPER ========== */
        .fallos-cta-wrapper {
            background: 
                linear-gradient(rgba(15, 20, 25, 0.94), rgba(26, 37, 47, 0.90)),
                url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?w=1600&q=80&sat=-100') center/cover no-repeat;
            position: relative;
        }

        /* ========== FALLOS CAROUSEL ========== */
        .fallos {
            padding: 100px 0 0 0;
            background: none;
            overflow: visible;
            position: relative;
            margin: 0;
            border: none;
            z-index: 1;
        }

        .fallos__header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 1;
            padding-top: 0;
        }

        .carousel {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 60px 50px 60px;
            z-index: 1;
        }

        .carousel__track-container {
            overflow: hidden;
            border-radius: 0;
        }

        .carousel__track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel__slide {
            min-width: 100%;
            padding: 0 15px;
        }

        .fallo-card {
            background-color: #0F1419;
            border: 2px solid rgba(201, 163, 92, 0.2);
            border-left: 5px solid #C9A35C;
            padding: 3rem;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        }

        .fallo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
            border-left-width: 6px;
        }

        .fallo-card__icon {
            width: 75px;
            height: 75px;
            background: linear-gradient(135deg, #C9A35C 0%, #D4AE6D 100%);
            color: #1A252F;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            border: none;
            box-shadow: 0 4px 16px rgba(201, 163, 92, 0.3);
        }

        .fallo-card__title {
            font-family: var(--font-secondary);
            font-size: 1.75rem;
            font-weight: 600;
            color: #ECF0F1;
            line-height: 1.3;
        }

        .fallo-card__description {
            color: #95A5A6;
            line-height: 1.7;
            flex-grow: 1;
        }

        .fallo-card__link {
            display: inline-flex;
            align-items: center;
            align-self: flex-start;
            gap: 0.75rem;
            font-weight: 600;
            color: #1A252F;
            background-color: #C9A35C;
            padding: 0.875rem 1.75rem;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.875rem;
            border: 2px solid #C9A35C;
        }

        .fallo-card__link:hover {
            gap: 1rem;
            background-color: transparent;
            color: #C9A35C;
            border-color: #C9A35C;
        }

        .fallo-card__link i {
            transition: var(--transition);
        }

        .fallo-card__link:hover i {
            color: #C9A35C;
        }

        .fallo-card:hover .fallo-card__link i {
            transform: translateX(5px);
        }

        .carousel__button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: #C9A35C;
            color: #1A252F;
            border: 2px solid #C9A35C;
            width: 50px;
            height: 50px;
            border-radius: 0;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            transition: var(--transition);
            z-index: 10;
            box-shadow: 0 4px 16px rgba(201, 163, 92, 0.3);
        }

        .carousel__button:hover {
            background-color: #D4AE6D;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(201, 163, 92, 0.5);
        }

        .carousel__button--left {
            left: 0;
        }

        .carousel__button--right {
            right: 0;
        }

        .carousel__indicators {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 3rem;
        }

        .carousel__indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(201, 163, 92, 0.3);
            border: 2px solid rgba(201, 163, 92, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .carousel__indicator.active {
            background-color: #C9A35C;
            border-color: #C9A35C;
            transform: scale(1.2);
        }

        /* ========== RESPONSIVE ========== */
        @media screen and (max-width: 968px) {
            .section__title {
                font-size: 2rem;
            }

            .contact__grid {
                grid-template-columns: 1fr;
            }

            .hero__title {
                font-size: 2.5rem;
            }

            .hero__image {
                order: -1;
            }

            .stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .team__grid {
                grid-template-columns: 1fr;
            }

            .footer__grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }

            .cta__title {
                font-size: 2rem;
            }
        }

        @media screen and (max-width: 768px) {
            /* Centrar logo en mobile */
            .header {
                background-color: transparent !important;
                box-shadow: none;
                position: fixed !important;
                top: 0 !important;
                transform: none !important;
                transition: var(--transition) !important;
            }

            .header.scrolled {
                background-color: rgba(44, 62, 80, 0.98) !important;
                box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            }

            .nav {
                display: grid;
                grid-template-columns: 1fr auto 1fr;
                align-items: center;
                height: 125px;
                padding: 0.75rem 0;
                position: relative;
            }

            .logo-wrapper {
                text-align: center;
                align-items: center;
                grid-column: 2;
            }

            .logo-wrapper img {
                height: 100px;
            }

            .nav__toggle {
                grid-column: 3;
                justify-self: end;
            }

            .nav__menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background-color: #1A252F;
                padding: 6rem 2rem;
                box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
            }

            .nav__menu.show-menu {
                right: 0;
            }

            .nav__menu.show-menu ~ .nav__toggle {
                display: none;
            }

            .nav__list {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }

            .nav__toggle,
            .nav__close {
                display: block;
            }

            .nav__toggle {
                position: relative;
                top: auto;
                right: auto;
                transform: none;
                margin-right: 2.5rem;
            }

            .nav__close {
                position: absolute;
                top: 2rem;
                right: 2rem;
            }

            .hero {
                padding: 125px 0 60px;
            }

            .hero__title {
                font-size: 2rem;
                text-align: center;
            }

            .hero__subtitle {
                text-align: center;
            }

            .hero__description {
                font-size: 1rem;
                text-align: center;
            }

            .hero__buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 80%;
                justify-content: center;
            }

            /* Centrar tarjetas de servicios */
            .services__grid {
                grid-template-columns: 1fr;
            }

            /* Centrar tarjetas de equipo */
            .team-card__content {
                text-align: center;
            }

            .form__row {
                grid-template-columns: 1fr;
            }

            .contact__form .form__group label {
                text-align: center;
            }

            .contact__form .form__group input,
            .contact__form .form__group select,
            .contact__form .form__group textarea {
                text-align: center;
            }

            /* Centrar footer en mobile */
            .footer__grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer .logo-wrapper {
                justify-content: center;
                margin: 0 auto 1rem;
            }

            .footer__links,
            .footer__contact {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .footer__links a,
            .footer__contact li {
                justify-content: center;
            }


            /* Centrar stats */
            .stats {
                text-align: center;
            }
        }

        @media screen and (max-width: 576px) {
            .stats {
                grid-template-columns: 1fr;
            }

            .stat__number {
                font-size: 2.5rem;
            }

            .hero {
                padding: 70px 0 40px;
            }

            .whatsapp-option {
                flex-direction: column;
                text-align: center;
            }

            .team__grid {
                grid-template-columns: 1fr;
            }

            .logo-wrapper img {
                height: 85px;
            }

            .carousel {
                padding: 0 40px;
            }

            .carousel__button {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .fallo-card {
                padding: 2rem;
            }

            .fallo-card__title {
                font-size: 1.5rem;
            }

            .fallo-card__link {
                padding: 0.75rem 1.25rem;
                font-size: 0.813rem;
                letter-spacing: 0.5px;
            }

            .about__features {
                grid-template-columns: 1fr;
                max-width: 400px;
            }

            .feature {
                font-size: 0.8rem;
            }
        }

        /* Extra small devices (Samsung S8+, iPhone SE, etc.) */
        @media screen and (max-width: 400px) {
            .container {
                padding: 0 15px;
            }

            .section__title {
                font-size: 2rem;
            }

            .section__subtitle {
                font-size: 0.7rem;
                letter-spacing: 2px;
            }

            .hero__title {
                font-size: 1.75rem;
            }

            .hero {
                padding: 60px 0 40px;
            }

            .btn {
                padding: 0.875rem 1.5rem;
                font-size: 0.813rem;
            }

            .btn--large {
                padding: 1rem 2rem;
                font-size: 0.875rem;
            }

            .service-card {
                padding: 2.5rem 1.5rem;
            }

            .service-card__icon {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }

            .service-card__title {
                font-size: 1.25rem;
            }

            .team-card__name {
                font-size: 1.5rem;
            }

            .feature {
                font-size: 0.75rem;
                gap: 0.5rem;
            }

            .feature i {
                font-size: 1rem;
            }

            .about__features {
                gap: 1rem;
            }

            .stat__number {
                font-size: 2rem;
            }

            .stat__label {
                font-size: 0.875rem;
            }

            .fallo-card__title {
                font-size: 1.25rem;
            }

            .fallo-card__meta {
                font-size: 0.813rem;
            }

            .fallo-card__link {
                padding: 0.625rem 1rem;
                font-size: 0.75rem;
                letter-spacing: 0.5px;
                gap: 0.5rem;
            }

            .carousel__button {
                width: 35px;
                height: 35px;
                font-size: 0.875rem;
            }

            .carousel {
                padding: 0 35px;
            }

            .logo-wrapper img {
                height: 75px;
            }

            .nav {
                height: 110px;
            }

            .nav__toggle {
                margin-right: 1.5rem;
            }

            .whatsapp-float {
                width: 55px;
                height: 55px;
                font-size: 1.75rem;
                bottom: 20px;
                right: 20px;
            }
            /* 1. Achicamos el contenedor principal */
            .whatsapp-modal__content {
                width: 75%; /* Ocupa más ancho de pantalla pero se ve más compacto por dentro */
            }

            /* 2. Reducimos el cabezal del modal */
            .whatsapp-modal__header {
                padding: 1.25rem 1.5rem; /* Reducido de 2rem */
            }

            .whatsapp-modal__header h3 {
                font-size: 1.1rem; /* Texto más proporcionado a móvil */
            }

            /* 3. Ajustamos el cuerpo y el espacio entre opciones */
            .whatsapp-modal__body {
                padding: 1.15rem; /* Reducido de 2.5rem */
                gap: 0.75rem; /* Opciones más juntas entre sí */
            }

            /* 4. Achicamos cada tarjeta de contacto */
            .whatsapp-option {
                padding: 1rem; /* Reducido de 2rem */
                gap: 1rem; /* Menos espacio entre icono y texto */
            }

            .whatsapp-option__icon {
                width: 45px; /* Iconos más pequeños (eran de 65px) */
                height: 45px;
                font-size: 1.25rem;
            }

            .whatsapp-option__info h4 {
                font-size: 1rem; /* Nombre del socio más chico */
            }

            .whatsapp-option__info p {
                font-size: 0.75rem; /* Especialidad más chica */
            }

            .whatsapp-option__whatsapp {
                font-size: 1.75rem; /* El icono de WhatsApp final más pequeño */
            }

        }