:root {
  --primary-dark: #010b53;
  --primary-blue: #003dcb;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --text-dark: #1a1a1a;
  --text-gray: #6c757d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Menu com cor do site e efeito liquid glass no scroll */
.navbar {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
  box-shadow: 0 2px 10px rgba(1, 11, 83, 0.3);
  padding: 1rem 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(1, 11, 83, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white) !important;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--white) !important;
}

.btn-primary-custom {
  background-color: var(--white);
  color: var(--primary-blue);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: var(--light-gray);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(1, 11, 83, 0.05) 0%, rgba(0, 61, 203, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 61, 203, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -150px;
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(1, 11, 83, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  bottom: 50px;
  left: -100px;
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 4rem;
  line-height: 1.2;
}

.video-container {
  margin: 3rem 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
  width: 100%;
  height: 500px;
  border: none;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin: 3rem 0;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 3rem;
  text-align: center;
}

.section-title-left {
  text-align: left;
}

/* Vídeos verticais tipo reels do Instagram */
.video-section {
  padding: 80px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 61, 203, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: 100px;
  right: -100px;
  z-index: 0;
}

.video-section .container {
  position: relative;
  z-index: 1;
}

.video-card-vertical {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  height: 600px;
  background: linear-gradient(135deg, rgba(1, 11, 83, 0.05) 0%, rgba(0, 61, 203, 0.05) 100%);
}

.video-card-vertical:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 61, 203, 0.25);
}

.video-card-vertical iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Brands Carousel */
.brands-section {
  margin-top: 4rem;
  position: relative;
}

.brands-carousel-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2rem 0;
  min-height: 120px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: var(--primary-dark);
  opacity: 1;
}

.carousel-control-prev {
  left: -25px;
}

.carousel-control-next {
  right: -25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

.brand-logo {
  max-width: 120px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
  opacity: 0.7;
}

.brand-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: -300px;
  left: -200px;
}

.stats-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -200px;
  right: -100px;
}

.stats-section .container {
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Condominium Section */
.condo-section {
  padding: 80px 0;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.condo-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(1, 11, 83, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.condo-logo {
  height: 100px;
  object-fit: contain;
  margin: 1rem;
}

/* Services Cards */
.services-section {
  padding: 80px 0;
  background-color: var(--white);
}

.service-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-blue);
  box-shadow: 0 10px 30px rgba(0, 61, 203, 0.2);
}

.service-icon {
  font-size: 4rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 61, 203, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: 50px;
  left: -150px;
}

.testimonial-video {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  height: 600px;
  background: linear-gradient(135deg, rgba(1, 11, 83, 0.05) 0%, rgba(0, 61, 203, 0.05) 100%);
}

.testimonial-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.testimonial-divider {
  margin: 4rem 0;
  text-align: center;
}

.testimonial-divider-line {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-blue) 50%, transparent 100%);
  margin: 2rem 0;
}

.testimonial-divider-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.review-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin: 1rem;
  text-align: center;
  height: 100%;
}

.review-stars {
  color: #ffc107;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.review-author-photo {
  margin: 1.5rem 0 0.5rem;
}

.review-author-photo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--primary-blue);
  object-fit: cover;
}

.review-author {
  font-weight: 600;
  color: var(--primary-dark);
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background-color: var(--white);
}

.benefit-card {
  background-color: var(--light-gray);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-5px);
}

.benefit-card:hover .benefit-icon {
  color: var(--white);
}

.benefit-card:hover .benefit-title {
  color: var(--white);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.benefit-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.benefit-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Nova seção de benefícios finais com layout diferente */
.final-benefits-section {
  padding: 80px 0;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.final-benefits-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 61, 203, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: -150px;
  right: -100px;
}

.final-benefit-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border-left: 4px solid var(--primary-blue);
}

.final-benefit-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 61, 203, 0.2);
}

.final-benefit-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.final-benefit-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.final-benefit-text {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(1, 11, 83, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  right: -100px;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-gray);
}

.phone-mockup {
  max-width: 60%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: var(--white);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  color: var(--white);
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%); /* Alterando fundo de branco para azul gradiente */
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%); /* Ajustando cor do shape decorativo para funcionar com fundo azul */
  border-radius: 50%;
  top: -150px;
  left: -100px;
}

.gallery-album {
  position: relative;
  z-index: 1;
}

.gallery-album-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white); /* Mudando cor do título para branco para contraste com fundo azul */
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--white); /* Mudando cor da borda para branco */
  display: inline-block;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  aspect-ratio: 1 / 1;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 61, 203, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 61, 203, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 3rem;
  color: var(--white);
}

.modal-content {
  border: none;
  border-radius: 15px;
  overflow: hidden;
}

.modal-body img {
  border-radius: 0 0 15px 15px;
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-text {
  margin: 0;
  opacity: 0.8;
}

/* NOVO LAYOUT */
.footer-modern {
    background-color: var(--primary-dark); /* Seu #010b53 */
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Textos secundários e descrições */
.text-muted {
    color: #b0b8e0 !important; /* Um tom de azul acinzentado claro para não cansar a vista */
}

/* Títulos secundários */
.footer-modern h6, .footer-modern h5 {
    color: #ffffff;
    letter-spacing: 1px;
}

/* Links com efeito de hover */
.footer-list a {
    text-decoration: none;
    color: #d1d8ff; /* Azul bem clarinho */
    transition: 0.2s;
}

.footer-list a:hover {
    color: #00d4ff; /* Ciano vibrante para destacar no escuro */
    padding-left: 5px;
}

/* Botões sociais */
.social-circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1); /* Fundo sutil */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-circle:hover {
    background: #00d4ff;
    color: #010b53; /* Inverte a cor com o seu fundo */
    transform: translateY(-3px);
}

/* Ajuste no divisor (HR) */
.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Ícones de contato */
.text-info {
    color: #00d4ff !important; /* Ciano para brilhar sobre o azul escuro */
}

/* FIM FOOTER NOVO LAYOUT */

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .video-container iframe {
    height: 300px;
  }

  .video-card-vertical,
  .testimonial-video {
    height: 500px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .whatsapp-float {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    bottom: 20px;
    right: 20px;
  }

  .navbar-brand img {
    width: 80px !important;
  }

  .navbar.scrolled .navbar-brand img {
    width: 70px !important;
  }

  .gallery-album-title {
    font-size: 1.4rem;
  }

  .gallery-overlay i {
    font-size: 2rem;
  }

  /* Mantendo botões do carrossel visíveis no mobile */
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .carousel-control-prev {
    left: -10px;
  }

  .carousel-control-next {
    right: -10px;
  }

  .brand-logo {
    max-width: 80px;
    max-height: 60px;
  }

  .brands-carousel-content {
    padding: 1rem 0;
    min-height: 100px;
  }
}

@media (min-width: 769px) {
  .navbar-brand img {
    width: 120px !important;
    transition: width 0.3s ease;
  }

  .navbar.scrolled .navbar-brand img {
    width: 90px !important;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    width: 70px !important;
  }

  .navbar.scrolled .navbar-brand img {
    width: 60px !important;
  }
}
