        :root {
            --primary-blue: #2A4D69;
            --creative-magenta: #B50A70;
            --hover-magenta: #8A0A50;
            --secondary-gray: #ECEFF1;
            --dark-gray: #333333;
            --light-text: #F8F9FA;
            --dark-text: #212529;
            --white: #FFFFFF;
            --hover-blue: #3E7C9D;
            --spacing-unit: 1rem;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--dark-text);
            background-color: var(--white);
            scroll-behavior: smooth;
        }

        /* --- ESTILOS REUTILIZADOS (Header y Footer) --- */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 var(--spacing-unit); }
        .btn { display: inline-block; padding: 0.8rem 1.8rem; border-radius: 50px; text-decoration: none; font-weight: 500; transition: all 0.3s ease; cursor: pointer; font-size: 1rem; }
        .btn-primary { background-color: var(--primary-blue); color: var(--light-text); border: 2px solid var(--primary-blue); }
        .btn-primary:hover { background-color: var(--hover-blue); border-color: var(--hover-blue); transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }
        .cta-header .btn-primary { background: linear-gradient(45deg, var(--primary-blue), var(--creative-magenta)); border: none; }
        .cta-header .btn-primary:hover { background: linear-gradient(45deg, var(--hover-blue), var(--hover-magenta)); transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }
        h1, h2, h3 { font-weight: 600; line-height: 1.2; color: var(--dark-gray); }
        h1 { font-size: 3.5rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.8rem; }
        @media (max-width: 768px) { h1 { font-size: 2.8rem; } h2 { font-size: 2rem; } h3 { font-size: 1.5rem; } }

        .header { position: fixed; width: 100%; top: 0; left: 0; z-index: 1000; background-color: rgba(255, 255, 255, 0.9); padding: 1rem 0; transition: background-color 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
        .header.scrolled { background-color: var(--white); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
        .header .container { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 1.8rem; font-weight: 700; color: var(--primary-blue); text-decoration: none; display: flex; align-items: center; }
        .logo img { height: 40px; margin-right: 8px; }
        .nav-menu ul { list-style: none; display: flex; gap: 2rem; }
        .nav-menu ul li a { color: var(--dark-text); text-decoration: none; font-weight: 500; position: relative; transition: color 0.3s ease; }
        .nav-menu ul li a::after { content: ''; position: absolute; width: 0; height: 2px; background-color: var(--primary-blue); left: 0; bottom: -5px; transition: width 0.3s ease; }
        .nav-menu ul li a:hover, .nav-menu ul li a.active { color: var(--primary-blue); }
        .nav-menu ul li a:hover::after, .nav-menu ul li a.active::after { width: 100%; }
        .cta-header .btn { padding: 0.7rem 1.5rem; }
        .menu-toggle { display: none; font-size: 1.8rem; color: var(--primary-blue); cursor: pointer; }
        @media (max-width: 992px) { .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background-color: var(--white); box-shadow: 0 4px 10px rgba(0,0,0,0.1); padding: 1rem 0; } .nav-menu.active { display: flex; } .nav-menu ul { flex-direction: column; gap: 1rem; align-items: center; } .nav-menu ul li { width: 100%; text-align: center; } .cta-header { display: none; } .menu-toggle { display: block; } }

        .footer { background-color: var(--dark-gray); color: var(--secondary-gray); padding: 4rem 0 1.5rem; font-size: 0.9rem; }
        .footer .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2rem; }
        .footer-col h4 { color: var(--light-text); margin-bottom: 1.5rem; font-size: 1.2rem; }
        .footer-col .logo { font-size: 1.5rem; color: var(--light-text); margin-bottom: 0.5rem; }
        .footer-col .slogan { font-style: italic; margin-bottom: 1rem; opacity: 0.8; }
        .social-icons a { color: var(--secondary-gray); font-size: 1.5rem; margin-right: 1rem; transition: color 0.3s ease; }
        .social-icons a:hover { color: var(--primary-blue); }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 0.8rem; }
        .footer-col ul li a { color: var(--secondary-gray); text-decoration: none; transition: color 0.3s ease; }
        .footer-col ul li a:hover { color: var(--primary-blue); }
        .footer-col p { margin-bottom: 0.8rem; opacity: 0.9; }
        .footer-bottom { text-align: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.8rem; opacity: 0.7; }
        @media (max-width: 768px) { .footer .container { grid-template-columns: 1fr; text-align: center; } .social-icons { margin-top: 1rem; } .social-icons a { margin: 0 0.5rem; } }

        /* --- NUEVOS ESTILOS PARA LA PÁGINA DE SERVICIOS --- */

        .main-content {
            padding-top: 80px;
        }

        .services-hero {
            text-align: center;
            padding: 4rem 0;
            background-color: var(--secondary-gray);
        }
        .services-hero h1 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }
        .services-hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 300;
        }

        .plans-section {
            padding: 5rem 0;
            text-align: center;
        }
        .plans-section h2 {
            margin-bottom: 3rem;
        }
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            align-items: stretch; /* Alinear tarjetas */
        }
        .plan-card {
            background: var(--white);
            padding: 2.5rem 2rem;
            border-radius: 15px;
            border: 1px solid var(--secondary-gray);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .plan-card.featured {
            border: 2px solid var(--creative-magenta);
            transform: scale(1.05);
        }
        .plan-card h3 {
            color: var(--primary-blue);
            font-size: 1.6rem;
            margin-bottom: 1rem;
        }
        .plan-card.featured h3 {
            color: var(--creative-magenta);
        }
        .plan-card .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 0.5rem;
        }
        .plan-card .price span {
            font-size: 1rem;
            font-weight: 400;
            color: #6c757d;
        }
        .plan-card .description {
            font-style: italic;
            color: #6c757d;
            margin-bottom: 2rem;
        }
        .plan-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
            flex-grow: 1; /* Empuja el botón hacia abajo */
        }
        .plan-card ul li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        .plan-card ul li i {
            color: var(--primary-blue);
            margin-right: 1rem;
        }
        .plan-card .btn {
            width: 100%;
            margin-top: auto;
        }

        .custom-services-section {
            padding: 5rem 0;
            background: var(--secondary-gray);
            text-align: center;
        }
        .custom-services-section h2 {
            margin-bottom: 3rem;
        }
        .custom-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .custom-service-item {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .custom-service-item i {
            font-size: 3rem;
            color: var(--creative-magenta);
            margin-bottom: 1rem;
        }
        .custom-service-item h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }
        .custom-service-item p {
            font-size: 0.95rem;
        }

        .custom-services-section .btn-primary {
            background-color: var(--creative-magenta);
            border-color: var(--creative-magenta);
        }

        .custom-services-section .btn-primary:hover {
            background-color: var(--hover-magenta);
            border-color: var(--hover-magenta);
        }

        .process-section {
            padding: 5rem 0;
            text-align: center;
        }
        .process-section h2 {
            margin-bottom: 4rem;
        }
        .process-timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        .process-timeline::after {
            content: '';
            position: absolute;
            width: 4px;
            background-color: var(--secondary-gray);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
            z-index: -1;
        }
        .process-step {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
        }
        .process-step.left {
            left: 0;
            text-align: right;
        }
        .process-step.right {
            left: 50%;
            text-align: left;
        }
        .process-step::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            background-color: var(--white);
            border: 4px solid var(--primary-blue);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        .process-step.left::after {
            right: -17px;
        }
        .process-step.right::after {
            left: -16px;
        }
        .process-step-content {
            padding: 20px 30px;
            background-color: var(--white);
            position: relative;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .process-step-content h3 {
            color: var(--primary-blue);
            font-size: 1.5rem;
        }
        @media (max-width: 768px) {
            .process-timeline::after { left: 15px; }
            .process-step { width: 100%; padding-left: 50px; padding-right: 15px; }
            .process-step.left, .process-step.right { left: 0; text-align: left; }
            .process-step.left::after, .process-step.right::after { left: 2px; }
        }

        /* Breadcrumb */
        .breadcrumb-nav {
            background-color: var(--secondary-gray);
            padding: 1rem 0;
        }
        .breadcrumb {
            background: none;
            margin: 0;
            padding: 0;
        }
        .breadcrumb-item a {
            color: var(--primary-blue);
        }
        .breadcrumb-item.active {
            color: var(--dark-text);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .modal-content {
            background-color: var(--white);
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 500px;
            border-radius: 15px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover,
        .close:focus {
            color: #000;
            text-decoration: none;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }

        .modal-content h2 {
            margin-bottom: 20px;
            color: var(--primary-blue);
        }

        .contact-btn {
            margin-right: 10px;
            padding: 8px 16px;
            border: 1px solid #ccc;
            background: var(--white);
            cursor: pointer;
            border-radius: 5px;
            font-size: 1rem;
            transition: background-color 0.3s ease;
        }

        .contact-btn.active {
            background-color: var(--primary-blue);
            color: var(--light-text);
            border-color: var(--primary-blue);
        }