 :root {
            --primary: #C41E3A;
            --primary-dark: #A01830;
            --primary-light: #E8354F;
            --secondary: #2D3748;
            --accent: #1A202C;
            --text-dark: #1A202C;
            --text-light: #4A5568;
            --text-muted: #718096;
            --white: #FFFFFF;
            --off-white: #F7FAFC;
            --gray-light: #E2E8F0;
            --gray: #CBD5E0;
            --success: #25D366;
            --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            --gradient-dark: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
            --shadow-soft: 0 4px 20px rgba(26, 32, 44, 0.08);
            --shadow-medium: 0 8px 30px rgba(26, 32, 44, 0.12);
            --shadow-large: 0 20px 50px rgba(26, 32, 44, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            background: var(--off-white);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Open Sans', sans-serif;
            font-weight: 600;
            line-height: 1.3;
        }

        /* ============ HEADER ============ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--white);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .top-bar {
            background: var(--accent);
            color: var(--white);
            padding: 8px 0;
            font-size: 0.85rem;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .top-bar a {
            color: var(--white);
            margin-left: 15px;
            opacity: 0.9;
        }

        .top-bar a:hover {
            opacity: 1;
        }

        .top-bar-right {
            display: flex;
            align-items: center;
        }

        .nav-main {
            padding: 12px 0;
            border-bottom: 1px solid var(--gray-light);
        }

        .nav-main .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .logo img {
            height: 50px;
            width: auto;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
            align-items: center;
        }
		
			.nav-links li a 
		{
		text-decoration: none;
       }
	  .nav-links li a:hover 
	  {
     text-decoration: none;
      }
.nav-links a {
    text-decoration: none;
    color: inherit;
}

        .nav-links a {
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 10px;
            position: relative;
        }
		
		 .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
        }

        .nav-cta {
            background: var(--gradient-primary);
            color: var(--white) !important;
            padding: 12px 25px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            white-space: nowrap;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 2px;
            background: var(--text-dark);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ============ PAGE HERO ============ */
        .page-hero {
            margin-top: 110px;
            background: var(--gradient-dark);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .page-hero .container {
            position: relative;
            z-index: 2;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }

        .breadcrumb a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            color: var(--white);
        }

        .breadcrumb span {
            color: rgba(255,255,255,0.5);
        }

        .breadcrumb .current {
            color: var(--white);
        }

        .page-hero h1 {
            font-size: 3rem;
            color: var(--white);
            margin-bottom: 15px;
        }

        .page-hero p {
            color: rgba(255,255,255,0.8);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ============ CONTACT SECTION ============ */
        .contact-section {
            padding: 80px 0;
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: start;
        }

        /* Contact Info */
        .contact-info {
            background: var(--off-white);
            border-radius: 20px;
            padding: 40px;
        }

        .contact-info h2 {
            font-size: 1.75rem;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .contact-info > p {
            color: var(--text-light);
            margin-bottom: 35px;
        }

        .info-cards {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .info-card {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .info-icon {
            width: 55px;
            height: 55px;
            min-width: 55px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.3rem;
        }

        .info-content h4 {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .info-content p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .info-content a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }

        .info-content a:hover {
            text-decoration: underline;
        }

        /* Social Links */
        .social-section {
            margin-top: 35px;
            padding-top: 35px;
            border-top: 1px solid var(--gray-light);
        }

        .social-section h4 {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }

        .social-link.whatsapp {
            background: var(--success);
        }

        .social-link.whatsapp:hover {
            background: #1da851;
        }

        /* Quick Contact Buttons */
        .quick-contact {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .btn-contact {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 15px 25px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
        }

        .btn-contact.whatsapp {
            background: var(--success);
            color: var(--white);
        }

        .btn-contact.whatsapp:hover {
            background: #1da851;
            transform: translateY(-2px);
        }

        .btn-contact.call {
            background: var(--accent);
            color: var(--white);
        }

        .btn-contact.call:hover {
            background: var(--secondary);
            transform: translateY(-2px);
        }

        .btn-contact svg {
            width: 22px;
            height: 22px;
            fill: currentColor;
        }

        /* Contact Form */
        .contact-form-wrapper {
            background: var(--white);
            border-radius: 20px;
            padding: 45px;
            box-shadow: var(--shadow-large);
            border: 1px solid var(--gray-light);
        }

        .contact-form-wrapper h2 {
            font-size: 1.75rem;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .contact-form-wrapper > p {
            color: var(--text-light);
            margin-bottom: 30px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .form-group label span {
            color: var(--primary);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--gray-light);
            border-radius: 10px;
            font-family: 'Open Sans', sans-serif;
            font-size: 1rem;
            color: var(--text-dark);
            background: var(--white);
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-muted);
        }

        .form-group textarea {
            min-height: 140px;
            resize: vertical;
        }

        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 18px;
            padding-right: 45px;
        }

        .btn-submit {
            width: 100%;
            padding: 16px 30px;
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            border-radius: 10px;
            font-family: 'Open Sans', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
        }

        .form-note {
            text-align: center;
            margin-top: 20px;
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* ============ MAP SECTION ============ */
        .map-section {
            padding: 0 0 80px;
            background: var(--white);
        }

        .map-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-large);
            height: 450px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ============ CTA SECTION ============ */
        .cta-section {
            padding: 80px 0;
            background: var(--gradient-primary);
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.25rem;
            color: var(--white);
            margin-bottom: 15px;
        }

        .cta-section p {
            color: rgba(255,255,255,0.9);
            font-size: 1.15rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-white {
            background: var(--white);
            color: var(--primary);
            padding: 16px 35px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            padding: 14px 33px;
            border: 2px solid var(--white);
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--primary);
        }

        /* ============ FLOATING WHATSAPP ============ */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--success);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 9999;
            transition: all 0.3s;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        /* ============ FOOTER ============ */
        .footer {
            background: var(--off-white);
            color: var(--text-dark);
            padding: 60px 0 0;
            border-top: 1px solid var(--gray-light);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
            gap: 50px;
            padding-bottom: 50px;
        }

        .footer-brand img {
            height: 50px;
            margin-bottom: 15px;
        }

        .footer-brand p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 8px;
            line-height: 1.6;
        }

        .footer-contact-info {
            margin-top: 15px;
        }

        .footer-contact-info p {
            margin-bottom: 5px;
        }

        .footer-contact-info strong {
            color: var(--primary);
        }

        .footer h5 {
            font-size: 1.1rem;
            margin-bottom: 25px;
            color: var(--text-dark);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
            padding-left: 15px;
            position: relative;
        }

        .footer-links li::before {
            content: '›';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-social p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .footer-social-icons {
            display: flex;
            gap: 12px;
        }

        .footer-social-icons a {
            width: 42px;
            height: 42px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }

        .footer-social-icons a:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }

        .footer-app {
            margin-top: 20px;
        }

        .footer-app p {
            color: var(--primary);
            font-style: italic;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .google-play-badge {
            display: inline-block;
            background: #000;
            color: #fff;
            padding: 8px 15px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 0.75rem;
        }

        .google-play-badge span {
            display: block;
            font-size: 1rem;
            font-weight: 600;
        }

        .footer-bottom {
            background: var(--accent);
            padding: 20px 0;
        }

        .footer-bottom .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }

        .footer-bottom p strong {
            color: var(--white);
        }

        .footer-bottom a {
            color: var(--primary-light);
            text-decoration: none;
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }
            .mobile-toggle {
                display: flex;
            }
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .page-hero {
                margin-top: 90px;
                padding: 60px 0;
            }
            .page-hero h1 {
                font-size: 2.25rem;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .contact-form-wrapper {
                padding: 30px 25px;
            }
            .contact-info {
                padding: 30px 25px;
            }
            .map-container {
                height: 350px;
            }
            .cta-section h2 {
                font-size: 1.75rem;
            }
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom .container {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .top-bar {
                display: none;
            }
            .page-hero {
                margin-top: 80px;
            }
            .page-hero h1 {
                font-size: 1.75rem;
            }
        }
			.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}

/* Brand colors */
.facebook { background: #1877f2; }
.instagram { background: #e4405f; }
.youtube { background: #ff0000; }
.linkedin { background: #0a66c2; }
.whatsapp { background: #25d366; }

.social-link:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}