* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #ffffff;
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
        }

        /* Header mejorado */
        .header-top {
            background: linear-gradient(135deg, #1a1f27, #2c3e50);
            color: white;
            padding: 8px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 40px;
            align-items: center;
            font-size: 14px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-item img {
            width: 16px;
            height: 16px;
        }

        .main-header {
            background: linear-gradient(to right, #1a1f27, #f6e5bb);
            padding: 12px 0;
            position: fixed;
            top: 38px;
            width: 100%;
            z-index: 999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav-container {
            width: 100%;           /* ← Usar todo el ancho de pantalla */
    margin: 0;             /* ← No centrar */
            display: flex;
            align-items: center;
            padding: 0 10px;
        }

        .logo {
            font-size: 0rem;
            font-weight: bold;
            color: #1e3a5f;
            text-decoration: none;
            transition: color 0.3s ease;
            padding-bottom: 0px;
           
            margin-left: 20px;
        }
        
        .logo-img {
            height: 80px; /* Ajusta la altura según necesites */
            width: auto; /* Mantiene las proporciones */
            margin-right: auto;
            transition: all 0.3s ease;
        }

        .logo:hover {
            color: #1e3a5f;
        }

        .nav-menu {
            margin-left: auto;            
            display: flex;
            list-style: none;
            gap: 10px;
        }

        .nav-menu a {
            color: #fafafa;
            text-decoration: none;
            font-weight: 500;
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
            padding: 10px 15px;
        }

        .nav-menu a:hover {
            color: #936b0a;
            transform: translateY(-2px);
        }

        .nav-menu a.active {
            color: #936b0a;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: #efb810;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }

        /* Iconos sociales flotantes */
        .social-icons {
            position: fixed;
            top: 50%;
            left: 30px;
            transform: translateY(-50%);
            z-index: 1000;
            transition: left 0.3s ease;
        }

        .social-icons:hover {
            left: 10px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            margin: 10px 0;
            background: linear-gradient(135deg, #efb810, #936b0a);
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        .social-icons a img {
            width: 24px;
            height: 24px;
            filter: brightness(0) invert(1);
        }

        /* Contenido principal */
        .main-content {
            margin-top: 0;
            padding: 40px 20px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-title {
            text-align: center;
            font-size: 2.5rem;
            color: #1a1f27;
            margin-bottom: 50px;
            position: relative;
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, #efb810, #936b0a);
            border-radius: 2px;
        }

        /* Sección hero con imagen de fondo */
        .hero-about {
            background: linear-gradient(rgba(26, 31, 39, 0.8), rgba(26, 31, 39, 0.8)), 
                        url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 120px 20px 80px 20px;
            text-align: center;
            margin-top: 100px;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: #f6e5bb;
            font-weight: 300;
        }

        /* Contenedor principal del contenido */
        .about-container {
            background: white;
            border-radius: 20px;
            padding: 60px 50px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            margin: 0 auto;
            max-width: 900px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .about-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(to right, #efb810, #936b0a);
        }

        .professional-intro {
            font-size: 1.3rem;
            color: #1a1f27;
            font-weight: 600;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .services-list {
            text-align: left;
            margin: 40px 0;
            background: linear-gradient(135deg, #f6e5bb, #f5f2eb);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid #efb810;
        }

        .services-list ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .services-list li {
            margin: 15px 0;
            color: #1a1f27;
            font-size: 1.1rem;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            line-height: 1.6;
        }

        .services-list li::before {
            content: '✨';
            font-size: 1.2rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .commitment-text {
            font-size: 1.2rem;
            color: #666;
            margin: 40px 0;
            line-height: 1.8;
            font-style: italic;
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .cta-text {
            font-size: 1.3rem;
            color: #1a1f27;
            font-weight: 600;
            margin-bottom: 40px;
            background: linear-gradient(135deg, #efb810, #936b0a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Estadísticas */
        .stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .stat-item {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-10px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #efb810;
            display: block;
            margin-bottom: 10px;
        }

        .stat-label {
            color: #666;
            font-size: 1rem;
            font-weight: 500;
        }

        /* Botones de acción */
        .action-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #efb810, #936b0a);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .btn-whatsapp {
            background: #25D366;
            color: white;
        }

        .btn-whatsapp:hover {
            background: #128C7E;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: #efb810;
            border: 2px solid #efb810;
        }

        .btn-secondary:hover {
            background: #efb810;
            color: white;
        }

        /* Sección de regiones */
        .regions-section {
            background: white;
            padding: 40px;
            border-radius: 15px;
            margin: 40px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .regions-title {
            text-align: center;
            font-size: 1.8rem;
            color: #1a1f27;
            margin-bottom: 30px;
        }

        .regions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .region-card {
            text-align: center;
            padding: 25px;
            background: linear-gradient(135deg, #f6e5bb, #f5f2eb);
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .region-card:hover {
            transform: translateY(-5px);
        }

        .region-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .region-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1a1f27;
            margin-bottom: 10px;
        }

        .region-description {
            color: #666;
            font-size: 0.9rem;
        }

        /* Footer igual al resto */
        footer {
            background: linear-gradient(135deg, #1a1f27, #7e6d41);
            color: white;
            padding: 60px 0 20px;
            margin-top: 80px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
        }

        .footer-logo {
            font-family: 'Lobster', cursive;
            font-size: 2rem;
            color: #efb810;
            margin-bottom: 20px;
        }

        .footer-description {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-section h3 {
            color: #efb810;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
            color: #ccc;
        }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #efb810;
        }

        .footer-bottom {
            border-top: 1px solid #444;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #ccc;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 20px;
            }

            .nav-menu {
                gap: 15px;
            }

            .nav-menu a {
                font-size: 16px;
            }

            .contact-info {
                flex-direction: column;
                gap: 10px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-icons {
                left: 10px;
            }

            .about-container {
                padding: 40px 30px;
                margin: 0 10px;
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .professional-intro {
                font-size: 1.1rem;
            }

            .action-buttons {
                flex-direction: column;
                align-items: center;
            }

            .stats-section {
                grid-template-columns: repeat(2, 1fr);
            }

            .regions-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .about-container {
            animation: fadeInUp 0.8s ease-out;
        }

        .stat-item {
            animation: fadeInUp 0.8s ease-out;
        }