/* ==========================================================================
           VARIÁVEIS E CONFIGURAÇÕES GERAIS
           ========================================================================== */
:root {
  --primary-color: #081535;
  --secondary-color: #ffffff;
  --accent-color: #ffa500;
  --text-color: #333333;
  --text-light: #777777;
  --bg-light: #f9f9f9;
  --border-radius: 0px; /* Removendo bordas arredondadas */
  --box-shadow: 0 5px 15px rgba(8, 21, 53, 0.08);
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
  background: var(--secondary-color);
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
  position: relative;
  letter-spacing: 0.5px;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: var(--secondary-color);
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: 2px solid var(--accent-color);
  cursor: pointer;
  font-size: 0.85rem;
}

.cta-button:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--secondary-color);
}

/* ==========================================================================
           HEADER
========================================================================== */
header {
  background: var(--secondary-color);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(8, 21, 53, 0.05);
  transition: var(--transition);
  border-bottom: 1px solid rgba(8, 21, 53, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-image {
  transition: var(--transition);
  width: 160px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  z-index: 1001;
}

/* Media query para mobile */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 2rem;
  }

  .nav-links.active {
    right: 0;
    display: flex;
  }

  .nav-links li {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 12px 0;
    display: block;
    width: 100%;
  }

  /* Overlay quando menu está aberto */
  body.menu-open::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
}

/* ==========================================================================
           HERO SECTION
           ========================================================================== */
.hero {
  position: relative;
  height: 115vh;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-slider .slide.active {
  opacity: 1;
}

.hero-slider .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
}

.hero-slider .slide-1 {
  background-image: url("../images/hero/banner6.jpeg");
}

.hero-slider .slide-2 {
  background-image: url("../images/hero/banner9.jpeg");
}

.hero-slider .slide-3 {
  background-image: url("../images/hero/banner10.jpeg");
}

.hero-content {
  position: absolute;
  left: 200px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 420px;
  max-width: 420px;
  padding: 35px 40px;
  background: #08153572;
  border-radius: 2%;
  backdrop-filter: blur(10px);
  border-left: 5px solid var(--accent-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  color: var(--primary-color);
}

.hero-content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.2;
  color: var(--bg-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--secondary-color);
  line-height: 1.7;
}

/* Navegação do Slider */
.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 10;
  pointer-events: none;
}

.slider-arrows .arrow {
  position: relative;
  transform: none;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.slider-arrows .arrow:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--primary-color);
  transform: scale(1.1);
}

.slider-arrows .arrow.prev {
  left: 0;
}

.slider-arrows .arrow.next {
  right: 0;
}

/* Redes sociais no topo direito */
.social-sidebar {
  position: absolute;
  bottom: 140px;
  right: 60px;
  top: auto;
  display: flex;
  flex-direction: row;
  gap: 12px;
  z-index: 10;
}

.social-icon {
  width: 48px;
  height: 48px;
  background: #08153586;
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 1.1rem;
  transition: var(--transition);
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.social-icon:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-5px);
  border-radius: 14px;
}

/* Responsividade */
@media (max-width: 992px) {
  .hero-content {
    left: 30px;
    width: 380px;
    max-width: 380px;
    padding: 30px 35px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .social-sidebar {
    bottom: 110px;
    right: 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 110vh;
  }

  .hero-content {
    left: 50%;
    right: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 120px);
    max-width: calc(100% - 120px);
    padding: 30px 25px;
    background: #08153572;
    backdrop-filter: blur(10px);
    text-align: center;
  }

  .hero-content h1 {
    font-size: 1.6rem;
    color: var(--bg-light);
  }

  .hero-content p {
    font-size: 0.95rem;
    color: var(--secondary-color);
  }

  .hero-features {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .slider-arrows {
    padding: 0 20px;
  }

  .slider-arrows .arrow {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    z-index: 20;
  }

  .social-sidebar {
    bottom: 140px;
    top: auto;
    right: 20px;
    left: auto;
    flex-direction: row;
    gap: 10px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .social-icon:hover {
    transform: scale(1.1);
  }
}

@media (max-width: 576px) {
  .hero-content {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    width: calc(100% - 100px);
    max-width: calc(100% - 100px);
    padding: 25px 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 1.4rem;
    color: var(--bg-light);
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
  }

  .cta-button {
    padding: 10px 22px;
    font-size: 0.8rem;
    width: 100%;
    display: block;
    margin: 0 auto;
  }

  .slider-arrows {
    padding: 0 15px;
  }

  .slider-arrows .arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    z-index: 20;
  }

  .social-sidebar {
    bottom: 130px;
    top: auto;
    right: 15px;
    left: auto;
    gap: 8px;
  }

  .social-icon {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .hero-content {
    width: calc(100% - 90px);
    max-width: calc(100% - 90px);
  }

  .hero-content h1 {
    font-size: 1.2rem;
    color: var(--bg-light);
  }

  .slider-arrows .arrow {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
    z-index: 20;
  }

  .social-sidebar {
    bottom: 120px;
    top: auto;
    right: 10px;
    left: auto;
    gap: 8px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }
}

.products-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.products-carousel::before,
.products-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 5;
  pointer-events: none;
}

.products-carousel::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent);
}

.products-carousel::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.4), transparent);
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease;
  padding: 10px 0;
}

.product-card {
  flex: 0 0 calc(20% - 20px);
  margin: 0 10px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  height: 500px;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Touch devices - melhor visualização */
@media (hover: none) and (pointer: coarse) {
  .product-card:active {
    transform: scale(0.98);
  }
  
  .product-card:active .product-name {
    background: linear-gradient(to top, var(--accent-color), rgba(255, 165, 0, 0.9));
    color: var(--primary-color);
  }
}

.product-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Nome do produto (novo estilo) */
.product-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(8, 21, 53, 0.95), rgba(8, 21, 53, 0.85));
  color: white;
  padding: 18px 15px;
  text-align: center;
  transform: translateY(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-top: 3px solid var(--accent-color);
  backdrop-filter: blur(5px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card:hover .product-name {
  background: linear-gradient(to top, var(--accent-color), rgba(255, 165, 0, 0.9));
  color: var(--primary-color);
  border-top-color: var(--primary-color);
  transform: scale(1.02);
}

/* Setas de navegação */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(8, 21, 53, 0.8);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-arrow:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-50%) scale(1.15);
  color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.arrow-prev {
  left: 30px;
}

.arrow-next {
  right: 30px;
}

/* Ajustes para responsividade */
@media (max-width: 1200px) {
  .product-card {
    flex: 0 0 calc(25% - 20px);
  }
}

@media (max-width: 992px) {
  .product-card {
    flex: 0 0 calc(33.333% - 20px);
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .product-card {
    flex: 0 0 calc(50% - 20px);
    height: 350px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .carousel-arrow {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .arrow-prev {
    left: 10px;
  }

  .arrow-next {
    right: 10px;
  }

  .product-name {
    font-size: 0.95rem;
    padding: 14px 12px;
    letter-spacing: 0.8px;
    white-space: normal;
    line-height: 1.25;
  }
}

@media (max-width: 576px) {
  .product-card {
    flex: 0 0 calc(100% - 20px);
    height: 550px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .arrow-prev {
    left: 5px;
  }

  .arrow-next {
    right: 5px;
  }

  .products-carousel::before,
  .products-carousel::after {
    width: 80px;
  }

  /* Product name sempre visível em mobile */
  .product-name {
    transform: translateY(100%);
    font-size: 1rem;
    padding: 16px 15px;
    letter-spacing: 1px;
    position: relative;
    white-space: normal;
    line-height: 1.3;
  }

  .product-card:hover .product-name {
    background: linear-gradient(to top, var(--accent-color), rgba(255, 165, 0, 0.9));
    color: var(--primary-color);
    border-top-color: var(--primary-color);
  }
}

@media (max-width: 400px) {
  .product-card {
    height: 480px;
  }

  .product-name {
    font-size: 0.9rem;
    padding: 14px 12px;
    letter-spacing: 0.5px;
    white-space: normal;
    line-height: 1.2;
  }
}

/* ==========================================================================
           ABOUT SECTION
           ========================================================================== */
.about-company {
  background-color: #fff;
}

.about-container {
  max-width: 100%;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.about-image {
  flex: 0 0 75%;
  height: 650px;
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content {
  flex: 0 0 25%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
  align-items: center;
}

.about-title {
  font-size: 1.8rem;
  color: #081535;
  margin-bottom: 25px;
  position: relative;
  line-height: 1.3;
  text-align: center;
}

.about-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  text-align: center;
}

.about-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  text-decoration: none;
  text-align: center;
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
  color: var(--bg-light);
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}

.about-button:hover {
  background: transparent;
  color: var(--accent-color);
}

/* Responsividade */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
  }

  .about-image {
    flex: none;
    width: 100%;
    height: 400px;
  }

  .about-content {
    flex: none;
    width: 100%;
    padding: 30px 20px;
  }

  .about-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .about-image {
    height: 300px;
  }

  .about-title {
    font-size: 1.4rem;
  }

  .about-button {
    width: 100%;
  }
}

/* ==========================================================================
           PRODUCTS SECTION
           ========================================================================== */
.products {
  background: var(--secondary-color);
  border-bottom: 1px solid rgba(8, 21, 53, 0.1);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--secondary-color);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-radius: var(--border-radius);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(8, 21, 53, 0.1);
}

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.product-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.product-features {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-feature {
  background: rgba(8, 21, 53, 0.05);
  padding: 5px 12px;
  font-size: 0.8rem;
  color: var(--primary-color);
}

/* ==========================================================================
           FEATURES SECTION
           ========================================================================== */
.features-section {
  background: var(--secondary-color);
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.feature-card {
  padding: 25px 20px;
  transition: var(--transition);
  border: 1px solid rgba(8, 21, 53, 0.1);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.feature-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  height: 100%;
}

.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 4px;
}

.feature-text {
  flex: 1;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-description {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.features-button-container {
  text-align: center;
  margin-top: 20px;
}

/* Responsividade */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-card {
    padding: 20px 15px;
  }

  .feature-content {
    gap: 15px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .feature-title {
    font-size: 1rem;
  }

  .feature-description {
    font-size: 0.9rem;
  }
}

/* ==========================================================================
           FOOTER
           ========================================================================== */
footer {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
  font-weight: bold;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--secondary-color);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background: var(--accent-color);
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ==========================================================================
           ANIMAÇÕES
           ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
           RESPONSIVIDADE
           ========================================================================== */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .container {
    padding: 0 15px;
  }

  .contact-form {
    padding: 1.5rem;
  }

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

/* ===== SEÇÃO CTA (CALL TO ACTION) ===== */
.cta {
  background: linear-gradient(
      135deg,
      rgba(10, 35, 66, 0.74) 0%,
      rgba(42, 77, 110, 0.782) 100%
    ),
    url("../images/hero/banner8.png") no-repeat center center/cover;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  color: var(--white);
  font-size: 3.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  color: #fff;
}

/* Responsividade CTA */
@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-text {
    font-size: 1rem;
  }
  
  .cta div[style*="display: flex"] {
    flex-direction: column;
    align-items: center;
    gap: 15px !important;
  }
  
  .cta .cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .cta-title {
    font-size: 1.6rem;
  }
  
  .cta-text {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  background-color: #20ba5a;
}

.whatsapp-float i {
  color: white;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
}

/* Responsivo para mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 26px;
    bottom: 20px;
    right: 20px;
  }
}