
       
     body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f7fa;
            color: #333;
        }

        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1542838132-92c53300491e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 200px 0;
            margin-bottom: 50px;
        }

        .promo-card {
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            border: none;
            border-radius: 10px;
            overflow: hidden;
        }

        .promo-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .promo-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 0.8rem;
            padding: 5px 10px;
        }

        .store-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .store-card:hover {
            transform: translateY(-5px);
        }

        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .stats-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin: 10px 0;
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            margin-bottom: 30px;
        }

        .testimonial-card::before {
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 4rem;
            color: rgba(13, 110, 253, 0.1);
            font-family: Georgia, serif;
        }

        .newsletter-section {
            background: var(--primary);
            color: white;
            padding: 60px 0;
            margin-top: 50px;
        }

        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 10px 25px;
            font-weight: 600;
        }

        .btn-primary:hover {
            background-color: #0b5ed7;
            border-color: #0a58ca;
        }

        .map-container {
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .feature-box {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .feature-box:hover {
            transform: translateY(-10px);
        }



        /* Estilo para padronizar as imagens */
        .promo-card .card-img-container {
            height: 220px;
            /* Altura fixa para todas as imagens */
            overflow: hidden;
            position: relative;
            border-bottom: 1px solid #eee;
        }

        .promo-card .card-img-top {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Garante que a imagem cubra todo o espaço */
            transition: transform 0.3s ease;
        }

        .promo-card:hover .card-img-top {
            transform: scale(1.05);
        }

        .promo-card {
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .promo-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .promo-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 0.8rem;
            padding: 5px 10px;
            z-index: 10;
        }

        .price-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 10px 0;
        }

        .original-price {
            text-decoration: line-through;
            color: #6c757d;
            font-size: 0.9rem;
        }

        .discount-price {
            color: var(--danger);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .btn-buy {
            width: 100%;
            padding: 10px;
            font-weight: 600;
            background: var(--primary);
            border: none;
            transition: background 0.3s;
        }

        .btn-buy:hover {
            background: #0b5ed7;
        }

      

        @media (max-width: 768px) {
            .promo-card .card-img-container {
                height: 180px;
            }
        }


        .section-title {
            position: relative;
            padding-bottom: 15px;
            color: var(--leal-primary);
            font-weight: 700;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--leal-accent);
            border-radius: 2px;
        }

        .store-card {
            transition: transform 0.3s, box-shadow 0.3s;
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .store-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }

        .store-card .card-img-top {
            height: 200px;
            object-fit: cover;
            border-bottom: 3px solid var(--leal-accent);
        }

        .store-card .card-body {
            padding: 1.5rem;
        }

        .store-card .card-title {
            color: var(--leal-primary);
            font-weight: 700;
            margin-bottom: 1rem;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 0.75rem;
        }

        .btn-outline-primary {
            border-color: var(--leal-primary);
            color: var(--leal-primary);
            transition: all 0.3s;
        }

        .btn-outline-primary:hover {
            background-color: var(--leal-primary);
            color: white;
        }

        .btn-primary {
            background-color: var(--leal-primary);
            border-color: var(--leal-primary);
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-primary:hover {
            background-color: #004494;
            transform: scale(1.05);
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            height: 50px;
            width: 50px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
        }

        .carousel-control-prev {
            left: 20px;
        }

        .carousel-control-next {
            right: 20px;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
            background: var(--leal-primary);
        }

        .carousel-indicators {
            bottom: -50px;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            margin: 0 5px;
            border: none;
        }

        .carousel-indicators .active {
            background-color: var(--leal-primary);
        }

        .store-hours {
            background-color: rgba(0, 86, 179, 0.05);
            padding: 0.5rem;
            border-radius: 5px;
            margin-top: 0.5rem;
        }

        .lead {
            color: #555;
            max-width: 600px;
            margin: 0 auto;
        }

        .store-location {
            font-weight: 500;
        }

        .map-btn i {
            transition: transform 0.3s;
        }

        .map-btn:hover i {
            transform: translateX(5px);
        }
    
    /*aqui pra cima e teste*/
    
    :root {
      --primary: #004AAD;
      --primary-dark: #003B91;
      --secondary: #FF9800;
      --light: #f8f9fa;
      --dark: #212529;
      --gray: #6c757d;
      --light-gray: #e9ecef;
      --success: #28a745;
      --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      --transition: all 0.3s ease;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Open Sans', sans-serif;
      background-color: #fff;
      color: var(--dark);
      line-height: 1.6;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }
    
    h1, h2, h3, h4 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    
    /* Header Styles */
    header {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      padding: 1.2rem 0;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .logo-icon {
      background: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    .logo-icon i {
      font-size: 1.8rem;
      color: var(--primary);
    }
    
    .logo-text h1 {
      font-size: 1.6rem;
      line-height: 1.2;
    }
    
    .logo-text p {
      font-size: 0.85rem;
      opacity: 0.9;
      letter-spacing: 0.5px;
    }
    
    /* Mobile Menu */
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      z-index: 1001;
    }
    
    /* Navigation */
    nav {
      background-color: var(--primary-dark);
    }
    
    
    nav a {
      padding: 1rem 1.5rem;
      color: white;
      text-decoration: none;
      transition: var(--transition);
      font-size: 0.95rem;
      text-align: center;
      position: relative;
      font-weight: 500;
    }
    
    nav a:hover, nav a.active {
      background-color: rgba(255, 255, 255, 0.1);
    }
    
    nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 3px;
      background: var(--secondary);
      transition: var(--transition);
      transform: translateX(-50%);
    }
    
    nav a:hover::after, nav a.active::after {
      width: 70%;
    }
    
    /* Banner */
    .hero-banner {
      height: 500px;
      position: relative;
      overflow: hidden;
    }
    
    .banner-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      padding: 0 1rem;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }
    
    .banner-slide.active {
      opacity: 1;
    }
    
    .banner-content {
      max-width: 800px;
      background: rgba(0, 0, 0, 0.5);
      padding: 2rem;
      border-radius: 10px;
      backdrop-filter: blur(5px);
    }
    
    .banner-content h2 {
      font-size: 2.8rem;
      margin-bottom: 1rem;
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }
    
    .banner-content p {
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
      text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    }
    
    .cta-button {
        margin-top: 400px;
      display: inline-block;
      background: var(--secondary);
      color: white;
      padding: 0.9rem 2.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: var(--transition);
      box-shadow: 0 4px 12px rgba(0,0,0,0.25);
      border: 2px solid transparent;
    }
    
    .cta-button:hover {
      background: transparent;
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.3);
      border-color: var(--secondary);
    }
    
    .banner-nav {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
    }
    
    .banner-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: var(--transition);
    }
    
    .banner-dot.active {
      background: var(--secondary);
      transform: scale(1.2);
    }
    
    /* Section Styles */
    section {
      padding: 5rem 0;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
      padding-bottom: 1rem;
    }
    
    .section-title h2 {
      font-size: 2.4rem;
      color: var(--primary);
      display: inline-block;
      margin-bottom: 1rem;
    }
    
    .section-title h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--secondary);
      border-radius: 2px;
    }
    
    .section-subtitle {
      max-width: 700px;
      margin: 0 auto 2rem;
      text-align: center;
      color: var(--gray);
      font-size: 1.1rem;
    }
    
    /* About Section */
    .about-content {
      display: flex;
      gap: 3rem;
      align-items: center;
    }
    
    .about-text {
      flex: 1;
    }
    
    .about-text h3 {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
      color: var(--primary);
    }
    
    .about-image {
      flex: 1;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--box-shadow);
      position: relative;
    }
    
    .about-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s;
    }
    
    .about-image:hover img {
      transform: scale(1.03);
    }
    
    .about-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(0,74,173,0.1), transparent);
      z-index: 1;
    }
    
    .stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
      text-align: center;
    }
    
    .stat-item {
      background: var(--light);
      padding: 1.5rem 1rem;
      border-radius: 8px;
      box-shadow: var(--box-shadow);
      transition: var(--transition);
    }
    
    .stat-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .stat-item i {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }
    
    .stat-item .number {
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin: 0.5rem 0;
    }
    
    .stat-item .label {
      font-size: 1rem;
      color: var(--gray);
      font-weight: 500;
    }
    
    /* Units Section */
    .units-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2.5rem;
    }
    
    .unit-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--box-shadow);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    
    .unit-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }
    
    .unit-image {
      height: 220px;
      overflow: hidden;
      position: relative;
    }
    
    .unit-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .unit-card:hover .unit-image img {
      transform: scale(1.1);
    }
    
    .unit-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--secondary);
      color: white;
      padding: 0.3rem 0.8rem;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
    }
    
    .unit-content {
      padding: 1.8rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    
    .unit-content h3 {
      color: var(--primary);
      margin-bottom: 0.8rem;
      font-size: 1.4rem;
    }
    
    .unit-content p {
      color: var(--gray);
      margin-bottom: 1.2rem;
      font-size: 0.95rem;
      flex: 1;
    }
    
    .unit-content .address {
      display: flex;
      align-items: flex-start;
      margin-bottom: 0.8rem;
      gap: 10px;
    }
    
    .unit-content .address i {
      color: var(--secondary);
      margin-top: 3px;
      font-size: 1.1rem;
    }
    
    .unit-content .phone {
      display: flex;
      align-items: center;
      color: var(--dark);
      font-weight: 500;
      gap: 10px;
      margin-bottom: 1.2rem;
    }
    
    .unit-content .phone i {
      color: var(--success);
      font-size: 1.1rem;
    }
    
    .unit-button {
      display: inline-block;
      text-align: center;
      background: var(--primary);
      color: white;
      padding: 0.7rem 1rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
      margin-top: auto;
    }
    
    .unit-button:hover {
      background: var(--primary-dark);
    }
    
    /* Offers Section */
    .offers-container {
      background: linear-gradient(rgba(249, 249, 249, 0.95), rgba(249, 249, 249, 0.95)), url('https://images.unsplash.com/photo-1556911220-ef412aed7a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
      background-size: cover;
      background-attachment: fixed;
      padding: 5rem 0;
    }
    
    .offers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }
    
    .offer-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--box-shadow);
      display: flex;
      flex-direction: column;
      transition: var(--transition);
    }
    
    .offer-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }
    
    .offer-image {
      height: 200px;
      overflow: hidden;
      position: relative;
    }
    
    .offer-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .offer-discount {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--secondary);
      color: white;
      padding: 0.3rem 0.8rem;
      border-radius: 20px;
      font-weight: 700;
      font-size: 0.9rem;
    }
    
    .offer-content {
      padding: 1.8rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    
    .offer-content h3 {
      font-size: 1.35rem;
      margin-bottom: 0.6rem;
      color: var(--dark);
    }
    
    .offer-price-container {
      display: flex;
      align-items: baseline;
      gap: 10px;
      margin: 0.5rem 0;
    }
    
    .offer-price {
      font-size: 1.7rem;
      color: var(--primary);
      font-weight: 700;
    }
    
    .offer-old-price {
      text-decoration: line-through;
      color: var(--gray);
      font-size: 1.1rem;
    }
    
    .offer-content p {
      color: var(--gray);
      font-size: 0.95rem;
      margin: 0.8rem 0 1.2rem;
      flex: 1;
    }
    
    .offer-button {
      display: inline-block;
      background: var(--secondary);
      color: white;
      padding: 0.8rem 1.8rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      text-align: center;
      transition: var(--transition);
      border: 2px solid transparent;
    }
    
    .offer-button:hover {
      background: transparent;
      color: var(--secondary);
      border-color: var(--secondary);
    }
    
    /* Contact Section */
    .contact-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 3.5rem;
    }
    
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    
    .contact-item {
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
    }
    
    .contact-icon {
      width: 55px;
      height: 55px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .contact-icon i {
      color: white;
      font-size: 1.3rem;
    }
    
    .contact-text h4 {
      margin-bottom: 0.5rem;
      color: var(--primary);
      font-size: 1.3rem;
    }
    
    .contact-text p {
      color: var(--dark);
      line-height: 1.7;
    }
    
    .map-container {
      height: 300px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--box-shadow);
      margin-top: 2rem;
    }
    
    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
    
    form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      background: white;
      padding: 2.5rem;
      border-radius: 10px;
      box-shadow: var(--box-shadow);
    }
    
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    
    form label {
      font-weight: 600;
      color: var(--primary-dark);
      font-size: 1.05rem;
    }
    
    form input, form textarea, form select {
      padding: 0.9rem 1.2rem;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-family: 'Open Sans', sans-serif;
      font-size: 1rem;
      transition: var(--transition);
    }
    
    form input:focus, form textarea:focus, form select:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.1);
    }
    
    form button {
      background: var(--primary);
      color: white;
      border: none;
      padding: 1rem;
      border-radius: 8px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      margin-top: 0.5rem;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    form button:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }
    
    /* Footer */
    footer {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      padding: 4rem 0 1.5rem;
    }
    
    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2.5rem;
    }
    
    .footer-column h3 {
      font-size: 1.4rem;
      margin-bottom: 1.8rem;
      position: relative;
      padding-bottom: 0.8rem;
    }
    
    .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--secondary);
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 0.9rem;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 0.7rem;
      font-size: 1.05rem;
    }
    
    .footer-links a:hover {
      color: white;
      transform: translateX(5px);
    }
    
    .footer-links a i {
      color: var(--secondary);
      font-size: 0.9rem;
    }
    
    .social-links {
      display: flex;
      gap: 1.2rem;
      margin-top: 1.5rem;
    }
    
    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: white;
      transition: var(--transition);
      font-size: 1.2rem;
    }
    
    .social-links a:hover {
      background: var(--secondary);
      transform: translateY(-5px);
    }
    
    .footer-column p {
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }
    
    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    
    .newsletter-form input {
      padding: 0.9rem 1.2rem;
      border: none;
      border-radius: 8px;
      font-family: 'Open Sans', sans-serif;
      font-size: 1rem;
    }
    
    .newsletter-form button {
      background: var(--secondary);
      color: white;
      border: none;
      padding: 0.9rem;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }
    
    .newsletter-form button:hover {
      background: #e68a00;
    }
    
    .copyright {
      text-align: center;
      padding-top: 3rem;
      margin-top: 3rem;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.7);
    }
    
    /* WhatsApp Button */
    .whatsapp-button {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.8rem;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      z-index: 999;
      transition: var(--transition);
    }
    
    .whatsapp-button:hover {
      transform: translateY(-5px) scale(1.1);
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }
    
    /* Modal */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.8);
      z-index: 10000;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .modal.active {
      display: flex;
      opacity: 1;
    }
    
    .modal-content {
      background: white;
      border-radius: 15px;
      max-width: 800px;
      width: 90%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
      animation: modalFadeIn 0.4s ease;
    }
    
    @keyframes modalFadeIn {
      from { opacity: 0; transform: translateY(-50px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .close-modal {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 2rem;
      color: var(--gray);
      cursor: pointer;
      transition: var(--transition);
      z-index: 10;
    }
    
    .close-modal:hover {
      color: var(--primary);
    }
    
    /* Mobile Responsiveness */
    @media (max-width: 992px) {
      .about-content {
        flex-direction: column;
      }
      
      .banner-content h2 {
        font-size: 2.2rem;
      }
      
      .section-title h2 {
        font-size: 2rem;
      }
    }
    
    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }
      
      nav a {
        padding: 1.2rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
      }
      
      .hero-banner {
        height: 450px;
      }
      
      .banner-content h2 {
        font-size: 2rem;
      }
      
      .banner-content p {
        font-size: 1.1rem;
      }
      
      .section-title h2 {
        font-size: 1.8rem;
      }
      
      .unit-image {
        height: 200px;
      }
      
      .contact-container {
        grid-template-columns: 1fr;
      }
      
      .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
      }
    }
    
    @media (max-width: 576px) {
      .header-container {
        flex-wrap: wrap;
      }
      
      .logo {
        margin-bottom: 1rem;
      }
      
      .hero-banner {
        height: 400px;
      }
      
      .banner-content {
        padding: 1.5rem;
      }
      
      .banner-content h2 {
        font-size: 1.8rem;
      }
      
      .banner-content p {
        font-size: 1rem;
      }
      
      .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
      }
      
      .section-title h2 {
        font-size: 1.7rem;
      }
      
      .units-grid {
        grid-template-columns: 1fr;
      }
      
      .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      
      .footer-column {
        text-align: center;
      }
      
      .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
      }
      
      .social-links {
        justify-content: center;
      }
      
      .footer-links a {
        justify-content: center;
      }
    }


    