/* ===== VARIABLES CSS ===== */
        :root {
            --primary-blue: #1F3A5F;
            --dark-blue: #162B47;
            --silver-gray: #E6E7E8;
            --medium-gray: #6D6E71;
            --white: #FFFFFF;
            --gold-accent: #C6A75E;
            
            --font-heading: 'Cormorant Garamond', serif;
            --font-body: 'Montserrat', sans-serif;
            
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.8;
            color: var(--medium-gray);
            background: var(--white);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 600;
            color: var(--primary-blue);
            line-height: 1.3;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        /* ===== UTILITY CLASSES ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .section {
            padding: 6rem 0;
        }
        
        .section-alt {
            background: var(--silver-gray);
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* ===== HEADER ===== */
        .header {
            background: var(--white);
            border-bottom: 1px solid var(--silver-gray);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }
        
        .header.scrolled {
            box-shadow: 0 4px 20px rgba(31, 58, 95, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo1 {
            height: 8vh;
            width: auto;
            z-index: 1001;
        }
        
        .nav {
            display: flex;
            gap: 3rem;
            align-items: center;
        }
        
        .nav-link {
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--primary-blue);
            position: relative;
            letter-spacing: 0.5px;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold-accent);
            transition: var(--transition);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* DROPDOWN DESKTOP - CON PROTECCIÓN */
        .dropdown {
            position: relative;
        }
        
        .dropdown-toggle::after {
            content: '▾';
            margin-left: 0.5rem;
            font-size: 0.8rem;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            min-width: 280px;
            padding: 1.5rem 0;
            margin-top: 1rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: var(--transition);
            box-shadow: 0 10px 40px rgba(31, 58, 95, 0.15);
            border-top: 2px solid var(--gold-accent);
            pointer-events: none;
        }
        
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: all;
        }
        
        .dropdown-item {
            display: block;
            padding: 0.75rem 2rem;
            color: var(--primary-blue);
            font-size: 0.9rem;
            transition: var(--transition);
        }
        
        .dropdown-item:hover {
            background: var(--silver-gray);
            padding-left: 2.5rem;
        }
        
        .cta-header {
            padding: 0.75rem 2rem;
            background: var(--primary-blue);
            color: var(--white);
            border-radius: 2px;
            font-weight: 500;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        
        .cta-header:hover {
            background: var(--dark-blue);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(31, 58, 95, 0.3);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary-blue);
            cursor: pointer;
            z-index: 1001;
            padding: 0.5rem;
        }
        
        /* Mobile Menu */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 350px;
            height: 100vh;
            background: var(--white);
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: right 0.4s ease;
            overflow-y: auto;
            padding: 6rem 2rem 2rem;
        }
        
        .mobile-nav.active {
            right: 0;
        }
        
        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }
        
        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-nav-link {
            display: block;
            padding: 1rem 0;
            color: var(--primary-blue);
            font-weight: 500;
            font-size: 1.1rem;
            border-bottom: 1px solid var(--silver-gray);
        }
        
        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            color: var(--primary-blue);
            font-weight: 500;
            font-size: 1.1rem;
            border-bottom: 1px solid var(--silver-gray);
            cursor: pointer;
            user-select: none;
        }
        
        .mobile-dropdown-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .mobile-dropdown-menu.active {
            max-height: 600px;
        }
        
        .mobile-dropdown-item {
            display: block;
            padding: 0.75rem 0 0.75rem 1.5rem;
            color: var(--medium-gray);
            font-size: 0.95rem;
        }
        
        .mobile-cta {
            margin-top: 2rem;
            padding: 1rem;
            background: var(--primary-blue);
            color: var(--white);
            text-align: center;
            font-weight: 600;
            border-radius: 2px;
        }
        
        /* ===== URGENCY BANNER ===== */
        .urgency-banner {
            background: var(--dark-blue);
            color: var(--white);
            text-align: center;
            padding: 1rem 2rem;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        
        .urgency-banner strong {
            color: var(--gold-accent);
            font-weight: 600;
        }
        
        /* ===== HERO SECTION ===== */
        .hero {
            background: var(--white);
            color: var(--primary-blue);
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
            border-bottom: 3px solid var(--gold-accent);
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                var(--silver-gray) 0%, 
                var(--white) 50%, 
                var(--silver-gray) 100%);
            opacity: 0.4;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cg opacity="0.05"%3E%3Cpath d="M0 0h100v100H0z" fill="none"/%3E%3Cpath d="M20 20h60v60H20z" fill="none" stroke="%231F3A5F" stroke-width="1"/%3E%3Cpath d="M30 30h40v40H30z" fill="none" stroke="%231F3A5F" stroke-width="1"/%3E%3C/g%3E%3C/svg%3E');
            background-size: 100px 100px;
        }
        
        .hero-container {
            position: relative;
            z-index: 1;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 3rem;
            color: var(--medium-gray);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-subtitle strong {
            color: var(--primary-blue);
            font-weight: 600;
        }
        
        .cta-group {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 1rem 2.5rem;
            font-weight: 500;
            font-size: 1rem;
            border-radius: 2px;
            cursor: pointer;
            border: none;
            transition: var(--transition);
            letter-spacing: 0.5px;
            display: inline-block;
        }
        
        .btn-primary {
            background: var(--primary-blue);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background: var(--dark-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(31, 58, 95, 0.3);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }
        
        .btn-outline:hover {
            background: var(--primary-blue);
            color: var(--white);
        }
        
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            padding-top: 2rem;
            border-top: 1px solid var(--gold-accent);
        }
        
        .trust-badge {
            font-size: 0.9rem;
            color: var(--medium-gray);
        }
        
        /* ===== SECTION TITLES ===== */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: var(--gold-accent);
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--medium-gray);
            max-width: 700px;
            margin: 2rem auto 0;
            line-height: 1.8;
        }
        
        /* ===== SERVICES GRID ===== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .service-card {
            background: var(--white);
            padding: 3rem 2rem;
            border: 1px solid var(--silver-gray);
            transition: var(--transition);
            position: relative;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gold-accent);
            transition: var(--transition);
        }
        
        .service-card:hover::before {
            width: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(31, 58, 95, 0.1);
            border-color: var(--primary-blue);
        }
        
        .service-card.featured {
            border: 2px solid var(--gold-accent);
            background: linear-gradient(to bottom, var(--white) 0%, #f8f9fa 100%);
        }
        
        .service-badge {
            display: inline-block;
            padding: 0.4rem 1rem;
            background: var(--primary-blue);
            color: var(--white);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }
        
        .service-badge.urgent {
            background: var(--dark-blue);
        }
        
        .service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .service-card p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        
        .service-list {
            list-style: none;
            margin: 1.5rem 0;
        }
        
        .service-list li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--medium-gray);
        }
        
        .service-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 1rem;
            width: 6px;
            height: 1px;
            background: var(--gold-accent);
        }
        
        .service-link {
            color: var(--primary-blue);
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        
        .service-link::after {
            content: '→';
            transition: var(--transition);
        }
        
        .service-link:hover {
            color: var(--gold-accent);
        }
        
        .service-link:hover::after {
            transform: translateX(5px);
        }
        
        /* ===== CONTACT FORM ===== */
        .form-section {
            background: var(--primary-blue);
            color: var(--white);
        }
        
        .form-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .form-container .section-title,
        .form-container .section-subtitle {
            color: var(--white);
        }
        
        .form-container .section-title::after {
            background: var(--gold-accent);
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group.full-width {
            grid-column: 1 / -1;
        }
        
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        
        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--white);
            font-family: var(--font-body);
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .form-input::placeholder,
        .form-textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--gold-accent);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .form-textarea {
            resize: vertical;
            min-height: 150px;
        }
        
        .checkbox-group {
            display: flex;
            align-items: start;
            gap: 0.75rem;
        }
        
        .checkbox-group input[type="checkbox"] {
            margin-top: 0.25rem;
        }
        
        .btn-submit {
            width: 100%;
            margin-top: 1rem;
            background: var(--gold-accent);
            color: var(--white);
            padding: 1.2rem;
            font-size: 1.1rem;
        }
        
        .btn-submit:hover {
            background: var(--white);
            color: var(--primary-blue);
        }
        
        /* ===== TESTIMONIALS ===== */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .testimonial-card {
            background: var(--white);
            padding: 2.5rem;
            border-left: 3px solid var(--gold-accent);
            position: relative;
        }
        
        .testimonial-quote {
            font-size: 4rem;
            color: var(--silver-gray);
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            font-family: Georgia, serif;
        }
        
        .testimonial-text {
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 0.25rem;
        }
        
        .testimonial-case {
            font-size: 0.9rem;
            color: var(--medium-gray);
        }
        
        /* ===== FAQ ===== */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid var(--silver-gray);
            background: var(--white);
        }
        
        .faq-question {
            padding: 1.5rem 2rem;
            font-weight: 600;
            color: var(--primary-blue);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background: var(--silver-gray);
        }
        
        .faq-toggle {
            font-size: 1.5rem;
            color: var(--gold-accent);
            transition: var(--transition);
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 2rem 1.5rem;
        }
        
        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark-blue);
            color: rgba(255, 255, 255, 0.8);
            padding: 4rem 0 2rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-column h4 {
            color: var(--white);
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 0.75rem;
        }
        
        .footer-column a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }
        
        .footer-column a:hover {
            color: var(--gold-accent);
            padding-left: 5px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            font-size: 0.9rem;
        }
        
        .footer-bottom a {
            color: var(--gold-accent);
            margin: 0 0.5rem;
        }
        
        /* ===== FLOATING CTA ===== */
        .floating-cta {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 998;
            opacity: 0;
            transform: translateY(100px);
            transition: var(--transition);
        }
        
        .floating-cta.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .floating-cta a {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            background: var(--gold-accent);
            color: var(--white);
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(198, 167, 94, 0.4);
            transition: var(--transition);
            border-radius: 2px;
        }
        
        .floating-cta a:hover {
            background: var(--primary-blue);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(31, 58, 95, 0.4);
        }
        
        /* ===== RESPONSIVE DESIGN ===== */
        
        /* Tablets */
        @media (max-width: 968px) {
            .container {
                padding: 0 1.5rem;
            }
            
            .section {
                padding: 4rem 0;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
            
            .trust-badges {
                gap: 2rem;
            }
        }
        
        /* Mobile devices */
        @media (max-width: 768px) {
            /* DESHABILITAR COMPLETAMENTE DROPDOWN DESKTOP */
            .dropdown {
                pointer-events: none !important;
            }
            
            .dropdown-menu {
                display: none !important;
                pointer-events: none !important;
            }
            
            /* Header mobile */
            .nav {
                display: none;
            }
            
            .cta-header {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .mobile-nav,
            .mobile-overlay {
                display: block;
            }
            
            .header-container {
                padding: 1rem 1.5rem;
            }
            
            .logo1 {
                height: 6vh;
            }
            
            /* Urgency banner mobile */
            .urgency-banner {
                padding: 0.75rem 1rem;
                font-size: 0.8rem;
                line-height: 1.5;
            }
            
            /* Hero mobile */
            .hero {
                padding: 4rem 0 3rem;
            }
            
            .hero h1 {
                font-size: 2rem;
                line-height: 1.2;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            
            .cta-group {
                flex-direction: column;
                gap: 1rem;
            }
            
            .btn {
                width: 100%;
                text-align: center;
                padding: 1rem 1.5rem;
                font-size: 0.95rem;
            }
            
            .trust-badges {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
                font-size: 0.85rem;
            }
            
            /* Sections mobile */
            .section {
                padding: 3rem 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            /* Services grid mobile */
            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .service-card {
                padding: 2rem 1.5rem;
            }
            
            .service-card h3 {
                font-size: 1.5rem;
            }
            
            .service-list li {
                font-size: 0.95rem;
            }
            
            /* Form mobile */
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .form-container {
                padding: 0 1rem;
            }
            
            /* Testimonials mobile */
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonial-card {
                padding: 2rem 1.5rem;
            }
            
            /* FAQ mobile */
            .faq-question {
                padding: 1rem 1.5rem;
                font-size: 0.95rem;
            }
            
            .faq-item.active .faq-answer {
                padding: 0 1.5rem 1rem;
            }
            
            /* Footer mobile */
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            /* Floating CTA mobile - Círculo */
            .floating-cta {
                bottom: 1.5rem;
                right: 1.5rem;
            }
            
            .floating-cta a {
                width: 60px;
                height: 60px;
                border-radius: 50%;
                padding: 0;
                justify-content: center;
                font-size: 1.5rem;
            }
            
            .floating-cta a span {
                display: none;
            }
            
            .floating-cta a::before {
                content: '☎';
                font-size: 1.5rem;
            }
        }
        
        /* Very small devices */
        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            
            .hero h1 {
                font-size: 1.75rem;
            }
            
            .section-title {
                font-size: 1.75rem;
            }
            
            .service-card {
                padding: 1.5rem 1rem;
            }
            
            .urgency-banner {
                font-size: 0.75rem;
            }
        }