        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --navy: #1a2332;
            --gold: #c9a961;
            --light-gold: #e4d4b4;
            --white: #ffffff;
            --gray: #f8f9fa;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Header Sticky */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--navy);
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: padding 0.3s ease;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-section img {
            height: 50px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        .lawyer-names {
            color: var(--white);
            font-size: 0.85rem;
            line-height: 1.4;
        }

        .lawyer-names p {
            margin: 0;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2.5rem;
        }

        nav a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--gold);
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 70vh;
            background: linear-gradient(135deg, #2c5f7f 0%, #1e4d6b 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 4rem 5%;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60%;
            height: 60%;
            background-image: url('/img/justicia.svg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.08;
            filter: brightness(0) invert(1);
        }

        .hero-content {
            text-align: center;
            color: var(--white);
            position: relative;
            z-index: 2;
            max-width: 900px;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--gold);
            animation: fadeInUp 1s ease;
        }

        .hero-content p {
            font-size: 1.3rem;
            line-height: 1.8;
            animation: fadeInUp 1s ease 0.2s backwards;
            margin-bottom: 1.5rem;
        }

        .hero-content p.subtitle {
            font-size: 1.1rem;
            color: var(--light-gold);
            animation: fadeInUp 1s ease 0.4s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Servicios Section */
        .servicios {
            padding: 5rem 5%;
            background: var(--white);
        }

        .servicios-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .servicios-header h2 {
            font-size: 2.5rem;
            color: var(--navy);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .servicios-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--gold);
        }

        .servicios-header p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-light);
            max-width: 900px;
            margin: 2rem auto 0;
        }

        .servicios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .servicio-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .servicio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .servicio-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .servicio-content {
            padding: 2rem;
        }

        .servicio-content h3 {
            color: var(--navy);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            text-align: center;
            border-bottom: 3px solid var(--gold);
            padding-bottom: 0.5rem;
        }

        .servicio-content ul {
            list-style: none;
            color: var(--text-light);
            line-height: 2;
            text-align: center;
        }

        .servicio-content li {
            margin-bottom: 0.5rem;
        }

        /* CTA Section */
        .cta-section {
            background: var(--gray);
            padding: 5rem 5%;
            position: relative;
        }

        .cta-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .cta-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .cta-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .cta-content {
            padding: 2rem;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            color: var(--navy);
            margin-bottom: 1.5rem;
        }

        .cta-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .cta-btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--gold);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
        }

        .cta-btn:hover {
            background: var(--navy);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
        }

        /* Footer / Contacto */
        footer {
            background: var(--navy);
            color: var(--white);
            padding: 4rem 5% 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column h3 {
            color: var(--gold);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }

        .footer-column-left {
            text-align: center;
        }

        .footer-logo img {
            height: 40px;
            filter: brightness(0) invert(1);
            margin-bottom: 1rem;
        }

        .footer-lawyers {
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .footer-tagline {
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.8);
            font-style: italic;
        }

        .contact-info p {
            margin-bottom: 0.8rem;
            line-height: 1.3;
        }

        .contact-info strong {
            color: var(--gold);
            display: block;
            margin-bottom: 0.1rem;
            margin-top: 0.5rem;
        }

        .map-link {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.7rem 1.5rem;
            background: var(--gold);
            color: var(--white);
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .map-link:hover {
            background: var(--light-gold);
            color: var(--navy);
        }

        .open-modal-btn {
            display: inline-block;
            margin-top: 1.5rem;
            padding: 0.9rem 2rem;
            background: var(--gold);
            color: var(--white);
            text-decoration: none;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .open-modal-btn:hover {
            background: var(--light-gold);
            color: var(--navy);
            transform: translateY(-2px);
        }

        .legal-links {
            list-style: none;
        }

        .legal-links li {
            margin-bottom: 0.8rem;
        }

        .legal-links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .legal-links a:hover {
            color: var(--gold);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
        }

        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: var(--navy);
            padding: 3rem;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            position: relative;
            box-shadow: 0 10px 50px rgba(0,0,0,0.5);
        }

        .modal-content h3 {
            color: var(--gold);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 2rem;
            color: var(--white);
            cursor: pointer;
            transition: color 0.3s ease;
            background: none;
            border: none;
            padding: 0;
            line-height: 1;
        }

        .close-modal:hover {
            color: var(--gold);
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 5px;
            color: var(--white);
            font-family: inherit;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: rgba(255,255,255,0.6);
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 100px;
        }

        .contact-form button {
            width: 100%;
            padding: 1rem;
            background: var(--gold);
            border: none;
            border-radius: 5px;
            color: var(--white);
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .contact-form button:hover {
            background: var(--light-gold);
            color: var(--navy);
        }

        /* Responsive */
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                padding: 1rem 3%;
                gap: 1rem;
            }

            .logo-section {
                flex-direction: column;
                text-align: center;
            }

            nav ul {
                gap: 1.5rem;
            }

            .hero {
                min-height: 60vh;
                padding: 3rem 3%;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .servicios-header h2 {
                font-size: 2rem;
            }

            .cta-container {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --navy: #1a2332;
            --gold: #c9a961;
            --light-gold: #e4d4b4;
            --white: #ffffff;
            --gray: #f8f9fa;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Header Sticky */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--navy);
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-section img {
            height: 50px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        .lawyer-names {
            color: var(--white);
            font-size: 0.85rem;
            line-height: 1.4;
        }

        .lawyer-names p {
            margin: 0;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2.5rem;
        }

        nav a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--gold);
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Main Content */
        main {
            margin-top: 80px;
            min-height: calc(100vh - 80px - 400px);
            padding: 4rem 5%;
            background: var(--white);
        }

        .legal-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .legal-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 3px solid var(--gold);
        }

        .legal-header h1 {
            font-size: 2.5rem;
            color: var(--navy);
            margin-bottom: 1rem;
        }

        .legal-header p {
            font-size: 1.1rem;
            color: var(--text-light);
        }

        .legal-content {
            line-height: 1.8;
        }

        .legal-content h2 {
            font-size: 1.5rem;
            color: var(--navy);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-left: 1rem;
            border-left: 4px solid var(--gold);
        }

        .legal-content h3 {
            font-size: 1.2rem;
            color: var(--navy);
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
        }

        .legal-content p {
            margin-bottom: 1rem;
            text-align: justify;
        }

        .legal-content ul {
            margin-left: 2rem;
            margin-bottom: 1rem;
        }

        .legal-content li {
            margin-bottom: 0.5rem;
        }

        .legal-content strong {
            color: var(--navy);
        }

        .data-box {
            background: var(--gray);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
            border-left: 4px solid var(--gold);
        }

        .data-box p {
            margin-bottom: 0.5rem;
        }

        /* Footer */
        footer {
            background: var(--navy);
            color: var(--white);
            padding: 4rem 5% 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column h3 {
            color: var(--gold);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }

        .footer-column-left {
            text-align: center;
        }

        .footer-logo img {
            height: 40px;
            filter: brightness(0) invert(1);
            margin-bottom: 1rem;
        }

        .footer-lawyers {
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .footer-tagline {
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.8);
            font-style: italic;
        }

        .contact-info p {
            margin-bottom: 0.8rem;
            line-height: 1.3;
        }

        .contact-info strong {
            color: var(--gold);
            display: block;
            margin-bottom: 0.1rem;
            margin-top: 0.5rem;
        }

        .map-link {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.7rem 1.5rem;
            background: var(--gold);
            color: var(--white);
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .map-link:hover {
            background: var(--light-gold);
            color: var(--navy);
        }

        .legal-links {
            list-style: none;
        }

        .legal-links li {
            margin-bottom: 0.8rem;
        }

        .legal-links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .legal-links a:hover {
            color: var(--gold);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
        }

        /* Responsive */
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                padding: 1rem 3%;
                gap: 1rem;
            }

            .logo-section {
                flex-direction: column;
                text-align: center;
            }

            nav ul {
                gap: 1.5rem;
                font-size: 0.9rem;
            }

            main {
                padding: 3rem 3%;
            }

            .legal-header h1 {
                font-size: 2rem;
            }

            .legal-content h2 {
                font-size: 1.3rem;
            }
        }		