
html, body {
  font-family: "Montserrat";
    scroll-behavior: smooth !important;
    max-width: 100%;
    overflow-x: hidden;
  }
  body, *, span {
    font-family: 'Montserrat'!important;
  }
  b{
    font-weight: 700 !important;
  }

  *,
*::before,
*::after,
html,
body {
  font-family: 'Montserrat', sans-serif !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat" !important;
}
.fale-conosco-container{
    background-color: #002A3E;
}

.whatsapp-float {
    position: fixed;
    z-index: 999;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
  }
  
  .whatsapp-float:hover {
    background-color: #20c15e;
    transform: scale(1.1);
    transition: all 0.3s;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    5% {
      transform: scale(1.1);
    }
    10% {
      transform: scale(1);
    }
    15% {
      transform: scale(1.1);
    }
    20% {
      transform: scale(1);
    }
    100% {
      transform: scale(1);
    }
  }
  
  @keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-20px);
    }
    60% {
      transform: translateY(-10px);
    }
  }
  
  .whatsapp-float {
    animation: bounce 5s infinite;
  }
body {
  color: white;
}
.hero-container {
  position: relative;
  width: 100vw;
  padding-top: 50px;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: zoomEffect 8s linear forwards infinite;
  transition: background-image 1s ease-in-out;
}

@keyframes zoomEffect {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}

.hero-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 58, 73, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.hero-content {
    width: 100%;
  height: 90vh;
  
  z-index: 2;
  color: white;
  text-align: center;
  /* padding: 2rem; */
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10%;
  padding: 20px 50px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.Schott-logo {
  display: flex;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Schott-logo img {
  height: 80px;
  margin-bottom: 5px;
}

.consorcio-text {
  font-size: 10px;
  line-height: 1.2;
}

.separator {
  width: 1px;
  height: 50px;
  background-color: white;
  margin: 0 20px;
}

.representante {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 10px;
  margin-top: 60px;
}

.representante span {
  margin-bottom: 5px;
  line-height: 1.2;
}

.representante img {
  width: 100%;
  margin-top: -60px;
  max-width: 150px;
  object-fit: cover;
}

.main-nav {
  display: flex;
  gap: 30px;
}

.nav-item {
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;

  letter-spacing: 2px;
}

.dropdown-arrow {
  font-size: 10px;
  margin-left: 5px;
}

.main-content {
    height: 100%;
    align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 20px ;


  flex: 1;
}

.form-section {
  max-width: 500px;


  height:auto;
}

.form-section h1 {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 30px;
  font-weight: 400;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: flex-start !important;
  justify-content: flex-start;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 14px;
}
.form-group2 {
  display: flex;
  flex-direction: column;
}

.form-group3 input {
  padding: 12px;
  border-radius: 3px;
  width: 100%;
  border: 2px solid gray;
  border: none;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.1);
  color: black;
}

.form-group3 select {
  width: 100%;
  color: white !important;
  background-color: rgba(255, 255, 255, 0.1);
  font-family: 'Montserrat', sans-serif;

  padding: 12px;
  margin-top: 4px;
  border-radius: 3px;
  width: 100%;
  border: 2px solid gray;
  border: none;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Corrige o texto que aparece depois da escolha */
.form-group3 select:focus {
  color: black!important;
  background-color: white;
  outline: none;
}

/* Estilo dos options */
.form-group3 select option {
  color: black;
  background-color: white;
}
.form-group2 input,
.form-group2 textarea  {
  padding: 12px;
  border-radius: 10px;
  border: 2px solid gray;
  background-color: rgba(255, 255, 255, 0.1);
  color: black;
}
.form-group2 {
  margin-top: 20px !important;
}

.form-group input {
  padding: 12px;
  border-radius: 3px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
  margin-top: 10px;
  padding: 15px;
  background-color: #c9a55c;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background-color: #b89348;
}

/* Hero text styles */
.hero-text {
  width: 40%;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.hero-text h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 16px;
}

/* Discover more section */
.discover-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 20px;
  font-size: 14px;
  left: 50%;
  user-select: none;

  cursor: pointer;
}

.circle-arrow {
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: 1px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;

  animation: bounce 3s infinite;
}

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

  .main-content {
    flex-direction: column;
    position: relative;
  }

  .form-section,
  .hero-text {
    width: 100%;
    font-weight: 700;
  }

  .hero-text {
    text-align: center;
    align-items: center;
    margin-top: 40px;
  }
}

.trust-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* Accordion styles */ .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .accordion-item.active .accordion-content {
    max-height: 500px; /* Valor grande o suficiente pro conteúdo */
  }

  .accordion-header {
    cursor: pointer;
    font-family: 'Montserrat' !important;
    padding: 10px;
  }

  .accordion-header span {
    margin-right: 10px;
    font-weight: bold;
    font-family: 'Montserrat' !important;

  }
.accordion-container {

    font-family: 'Montserrat' !important;
    width: 45%;
}

.accordion-item {
    font-family: 'Montserrat' !important;
  border: 1px solid #e0e0e0;
  margin-bottom: 10px;
}

.accordion-header {
  padding: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #005b8f;
}

.plus-icon,
.minus-icon {
  font-family: "Montserrat" !important;
  margin-right: 10px;
  font-size: 18px;
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 0 15px 15px 40px;
  max-height: 200px;
}

.accordion-content p {
  margin-bottom: 10px;
  color: #666;
}

/* Trust visuals styles */
.trust-visuals {
  width: 55%;
  position: relative;
}

.trust-slogan {
  font-size: 70px;
  color: #f0f0f0;
  font-weight: bold;
  position: absolute;
  top: -20px;
  left: 0;
  z-index: 1;
  white-space: nowrap;
}

.trust-images {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.specialist-image,
.meeting-image {
  flex: 1;
}

.specialist-image img,
.meeting-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.caption {
  margin-top: 10px;
  font-size: 12px;
  color: #666;
  text-align: center;
}

.trust-section {
  background-color: white;
  color: #333;
  padding: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.trust-slogan {
  font-size: 5rem;
  color: #d6d6d6;
  font-weight: 900;
  position: relative;
  margin-bottom: 20px;
}

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

  .main-content {
    flex-direction: column;
  }

  .form-section,
  .hero-text {
    width: 100%;
  }

  .hero-text {
    text-align: center;
    align-items: center;
    margin-top: 40px;
  }
  .trust-section {
    background-color: white;
    color: #333;
    padding: 60px 0;
  }
  .trust-content {
    flex-direction: column;
  }

  .accordion-container,
  .trust-visuals {
    width: 100%;
    font-family: "Montserrat" !important; 
  }

  .trust-slogan {
    font-size: 40px;
    position: relative;
    margin-bottom: 20px;
  }

  .trust-images {
    flex-direction: column;
    margin-top: 20px;
  }
}

.title-underline {
  width: 50px;
  height: 3px;
  background-color: #c9a55c;
  margin-bottom: 40px;
}
.section-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
  margin-top: 60px;
}

strong {
  font-family: "Montserrat" !important;

}

/* Moeda Forte section styles */
.moeda-forte-section {
  background-color: #fff;

  min-height: 90vh;
  padding: 20px;
}

.moeda-forte-content {
  
  background-image: url("https://cempiconsorcio.com.br/wp-content/uploads/2020/08/background-1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;

  background-size: 2524px 2824px;

  
  gap: 60px;
}

.moeda-forte-images {
  width: 60%;
  padding: 10px;
  display: flex;
 
  gap: 20px;
  position: relative;
}

.handshake-image {
  width: 100%;
  height: 100%;
}

.luciano-image {
  width: 100%;
  height: 60%;
  object-fit: cover;
}

.handshake-image img,
.luciano-image img {
    width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.moeda-forte-info {
  width: 55%;
  padding-top: 20px;
}

.moeda-forte-logo {
  margin-bottom: 20px;
}

.moeda-forte-logo img {
  max-width: 200px;
  height: auto;
}

.grupo-exclusivo-title {
  color: #005b8f;
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 10px;
}
.stat-title {
  animation: bounce-text 1.5s ease-out;
}
@keyframes bounce-text {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.2); }
  75%  { transform: scale(0.95); }
  100% { transform: scale(1); }
}
.moeda-forte-description {
  margin-top: 30px;
  overflow: hidden !important;
}

.moeda-forte-description p {
  margin-bottom: 15px;
  text-align: justify !important;
  color: #555;
  line-height: 1.8;
}

/* Responsive styles */
@media (max-width: 992px) {
  .moeda-forte-content {
    flex-direction: column;
  }

  .moeda-forte-images,
  .moeda-forte-info {
    width: 100%;
  }

  .luciano-image {
    margin-top: 20px;
  }
}
.text-respiramos{
  font-size: 18px;
  text-align: justify;
  color: black;
}
.form-container{
  width: 40%;
  padding: 20px;
}
.black{
  color: black !important;
}
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .main-content {
    flex-direction: column;
    padding: 20px;
  }

  .form-section,
  .hero-text {
    width: 100%;
  }

  .hero-text {
    text-align: center;
    align-items: center;
    margin-top: 40px;
  }

  .trust-content {
    flex-direction: column;
    background-color: white;
  }

  .accordion-container,
  .trust-visuals {
    width: 100%;
  }

  .trust-slogan {
    font-size: 40px;
    position: relative;
    margin-bottom: 20px;
  }

  .trust-images {
    flex-direction: column;
    margin-top: 20px;
    background-color: white;
  }

  .handshake-image,
  .luciano-image {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .logo-container {
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
  }

  .logo-container img {
    width: 140px;
    object-fit: contain;
  }
  .consorcio-text {
    display: none;
  }
  .representante{
    gap: 10px;
  }
  .separator {
    height: 80px;
    width: 1px;
    margin: 10px 0;
  }

  .main-nav {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .form-section h1,
  .hero-text h2,
  .section-title,
  .grupo-exclusivo-title {
   font-weight: 400 !important;
    font-size: 24px;
  }

  .trust-slogan {
    font-size: 30px;
  }
}

/* Banners Section Styles */
.banners-section {
  width: 100%;
  max-width: 100vw;
  position: relative;
}
 
.banner {
  position: relative;
  width: 100%;
  height: 45vh; 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  overflow: hidden;
  
}

.carta-banner {
  background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url("https://wallpapers.com/images/hd/modern-house-relaxation-area-y9ap7i0itd3jmr04.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.moto-banner {
  background-image: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)), url("./images/moto.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.carreta-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url("./images/carreta3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  margin-top: -2px;
}
/* Quando estiver no centro da tela */
.banner.active .banner-content {
  opacity: 1;
  transform: translateX(0) scale(1.05);
}
.banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  padding-left: 10%;
  max-width: 600px;
  will-change: transform; /* Otimiza performance de animações */
  transition: transform 0.1s linear; /* Suaviza o movimento */
}

.left-align {
    width: 100vw !important;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
    padding-right: 10%;
  }




/* Fale conosco section */


/* Quem somos */

.about-section {
    padding: 60px 0;
}

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

.about-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
    
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    color: #0a5173;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: bold;
}

.decorative-line {
    width: 40px;
    height: 3px;
    background-color: #b08d4c;
    margin-bottom: 25px;
}

.about-text p {
  text-align: justify;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-images {
    display: flex;
    gap: 20px;
    min-width: 300px;
}

.profile-image, .award-image {
    position: relative;
    text-align: center;
    height: 100% !important;
  }
  
  .profile-image {
    flex: 3;
    border-radius: 10px;
}

.profile-image img {
  border-radius: 10px;
}

.award-image {
    flex: 2;
}

.profile-image img, .award-image img {
    
    height: 340px;
    object-fit: cover !important;
}

.image-caption {
    margin-top: 10px;
    font-size: 14px;
    color: #777;
    font-style: italic;
    text-align: center;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-images {
        flex-direction: column;
    }
}
/* final QUEM SOMOS */

.text{
    color: black;
    margin-bottom: 20px !important;
}

.file-upload {
    position: relative;
    width: 100%;
    height: 60px;
    display: inline-block;
    border: 4px solid #b08d4c;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .file-upload input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }

  .upload-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: transparent;
    color: #b08d4c;
    text-transform: uppercase;
    border-radius: 6px;
    font-weight: 800;
    font-size: 16px;
    
    cursor: pointer;
    transition: background-color 0.3s ease;
  }


  .upload-label .icon {
    font-size: 20px;
  }

.contato-container {
    width: 100%;
    margin: 50px auto;
    padding: 60px;
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contato-info {
    flex: 1;
    min-width: 300px;
    margin-right: 50px;
}

.contato-info2 {
  flex: 1;
  width: 30% !important;
  margin-right: 50px;
}
.contato-info2 h2 {
  color: #0a5173;
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: bold;
}


.contato-info h2 {
    color: #0a5173;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: bold;
}

.decorative-line {
    width: 70px;
    height: 4px;
    background-color: #b08d4c;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.icon {
    color: #0a5173;
    font-size: 20px;
    margin-right: 15px;
    min-width: 25px;
}

.info-item p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    margin-top: 40px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #0a5173;
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #0c6591;
}

.contato-form {
    flex: 1;
    min-width: 300px;


}

.form-group {
    margin-bottom: 5px;


}

.form-group label {
    color: #ffffff;
    text-align: flex-start;


}

.form-group2 label {
    display: block;   color: black;
}


.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.enviar-btn {
    background-color: #b08d4c;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    text-transform: uppercase;
    font-weight: bold;
    width: 100%;
}

.enviar-btn2 {
  background-color: #b08d4c;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s;
  text-transform: uppercase;
  font-weight: bold;
  width: 100%;
  margin-top: 10px;
  border-radius: 10px;
}

.enviar-btn:hover {
    background-color: #c9a25a;
}

@media (max-width: 768px) {
  .hero-container{
    padding: 0px;
    height: auto;
    min-height: 100vh;
  }
  .header{
    padding: 0px;
    gap:0px;
    height: auto;
  }
  .main-content{
    gap: 0;
    padding: 0px;
    padding-top: 20px;
    height: auto;
  }
  .discover-more{
    display: none;
  }

  .meeting-image{
    display: none;
  }
  .about-images{
    display: none;
  }
  .moeda-forte-content {
    background-image: none;
  }

    .contato-container {
        flex-direction: column;
    }
    .moeda-forte-images{
      display: none;
    }
    .contato-info {
        margin-right: 0;
        margin-bottom: 40px;
    }
}


/* Final do fale conosco container */
.banner-content h2, .left-align  h2 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 10px;
  color: white;
}

.banner-content p, .left-align  p {
  font-size: 20px;
  margin-bottom: 25px;
  color: white;
}
.banner-btn-saiba-mais {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #005b8f;
  color: #005b8f;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-radius: 10px;
  font-weight: bold;
}

.banner-btn-saiba-mais:hover {
  background-color: #005b8f;
  color: #fff;
  cursor: pointer;
}

.banner-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.banner-btn:hover {
  background-color: white;
  color: #005b8f;
}

/* Responsive styles */
@media (max-width: 768px) {
  .banner {
    height: 350px;
  }

  .banner-content {
    padding-left: 5%;
    max-width: 90%;
  }

  .banner-content h2 {
    font-size: 28px;
  }

  .banner-content p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .banner {
    height: 300px;
  }

  .banner-content h2 {
    font-size: 24px;
  }

  .banner-content p {
    font-size: 16px;
  }

  .banner-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
}

/* Seção de Comparação */
.comparison-section {
  color: white;
    background-image: linear-gradient(60deg, #002A3E 0%, #004D71 100%) !important; 
    padding: 80px 0 60px;
  position: relative;
}

.comparison-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.comparison-card {
  background-color: transparent;
  border: 2px solid #c9a55c;
  padding: 30px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;

  transition: 0.2s ease-in-out;
}

.comparison-card:hover{
    border: 2px solid #fff;
}

.card-icon {
  font-size: 30px;
  margin-bottom: 20px;
}

.home-icon,
.car-icon {
  font-size: 36px;
}

.card-title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
}

.benefits-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  line-height: 1.4;
}

.benefits-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c9a55c;
}

.learn-more-btn {
  background-color: #c9a55c;
  color: white;
  border: none;
  padding: 10px 25px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 3px;
  transition: background-color 0.3s;
}

.learn-more-btn:hover {
  background-color: #b89348;
}

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

  .comparison-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .testimonials-container {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .testimonial-card {
    width: 100% !important;
  }

  .section-title {
    font-size: 24px;
    font-weight: 400 !important;
  }

  .section-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .testimonial-text,
  .benefits-list li {
    font-size: 14px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 14px;
  }
}

/* Seção de Depoimentos */
.testimonials-section {
    background-color: #fff;
    padding: 60px 0 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .testimonials-slider {
    position: relative;
    width: 100%;
    max-width: 960px;
  }

  .testimonials-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    min-height: 350px;
  }

  .testimonial-card {
    background-color: #f1f1f1;
    padding: 30px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 45%;
    box-sizing: border-box;
    display: none;
    user-select: none;
  }

  .testimonial-text {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
  }

  .author-image {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    object-fit: cover;
    margin-right: 15px;
  }

  
  .author-name {
    color: #333;
    font-weight: 500;
    font-size: 14px;
  }

  .slider-navigation {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
  }

  .nav-button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
  }

  .nav-button:hover {
    background-color: #f5f5f5;
  }

  @media (max-width: 768px) {
    .testimonial-card {
      width: 100%;
    }
  }

/* Botão CTA sobreposto */
.cta-button-container {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.cta-button {
  background-color: #c9a55c;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 16px;

  font-weight: bold;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #b89348;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
}

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

.section-title {
  text-align: flex-start;
  font-size: 28px;
  color: #005b8f;
  margin-bottom: 10px;
}

.section-title-2 {
  text-align: center !important;
  font-size: 28px;
  color: #005b8f;
  margin-bottom: 10px;
}


.section-title-3 {
    text-align: center !important;
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
  }

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
}

.section-subtitle2 {
    text-align: center;
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 300 !important;
  }

.title-underline2 {
    width: 50px;
    margin-bottom: 40px !important;
    margin-left: 50%;
    translate: -50%;
    height: 4px !important;
    background-color: #c9a55c;
  }
  

.title-underline {
  width: 50px;
  height: 4px !important;
  background-color: #c9a55c;
}

/* Seção Sobre a Cempi */
.about-section {
  padding: 80px 0;
  max-width: 100% !important;
  background-color: #fff;
  position: relative;
  overflow: hidden !important;
}

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

.about-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* Estilos do texto */
.about-text {
  width: 40%;
  position: relative;
  z-index: 2;
}

.about-title {
  color: #005b8f;
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 10px;
}

.title-underline {
  width: 50px;
  height: 3px;
  background-color: #c9a55c;
  margin-bottom: 30px;
}

.about-description {
  color: #555;
  line-height: 1.8;
  text-align: justify;
}

.about-description p {
  margin-bottom: 20px;
}

.about-description strong {
  color: #333;
}

.about-description em {
  font-style: italic;
  color: #777;
}

/* Estilos das imagens */
.about-images {
  width: 60%;
  position: relative;
}

.about-images img {
  border-radius: 10px;
}

.background-text {
  position: absolute;
  top: -40px;
  left: 0;
  font-size:  92px;
  font-weight: 900;
  color: rgba(122, 122, 122, 0.31);
  ;
  z-index: 1;
  white-space: nowrap;
}

.image-container {
  display: flex;
  margin-top: 120px;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.office-image {
  width: 380px;
  height: 550px;
  margin-top: 100px;
  object-fit: cover;
}

.consultant-image {
  width: 380px;
  height: 550px;
  object-fit: cover;
}

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

  .about-text,
  .about-images {
    width: 100%;
  }

  
  .background-text {
    font-size: 80px;
    top: -20px;
  }
}

@media (max-width: 768px) {
  .background-text {
    font-size: 60px;
  }

  .image-container {
    flex-direction: column;
  }

  .office-image,
  .consultant-image {
    width: 100%;
    height: 250px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 50px 0;
  }

  .about-title {
    font-size: 28px;
  }

  .background-text {
    font-size: 40px;
    top: -10px;
  }
}

/* Seção de Estatísticas */
.stats-section {
  background-color: #c9a55c;
  color: white;
  padding: 50px 0;
}

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

.stats-container {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stat-item {
  flex: 1;
  padding: 0 20px;
}

.stat-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-description {
  font-size: 18px;
  font-weight: 300;
}

/* Rodapé */
.footer {
    user-select: none;
  background-color: #002a3e;
  color: #c9a55c;
  padding: 60px 0 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* Logo e Redes Sociais */
.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo img {
  max-width: 230px;
}

.social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  transition: all 0.3s ease;
}

.social-icon img{
  width: 30px;
  height: 30px;
}


.social-icon:hover {
    scale: 0.9;
}

/* Menu */
.footer-menu {
  flex: 1;
  min-width: 200px;
  color: #c9a55c;

}

.footer-heading {
  color: #c9a55c;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #c9a55c;
}

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

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
    color: #c9a55c;

  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Contato */
.footer-contact {
  flex: 1;
  min-width: 300px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item i {
  color: #c9a55c;
  font-size: 18px;
  margin-top: 3px;
}

.contact-item p {
  margin: 0;
  line-height: 1.6;
  font-size: 14px;
}

/* Créditos */
.footer-credits {
    background-color: #c9a55c;
  margin-top: 50px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 1);
  letter-spacing: 1.5px;
}
/* Base animate class */
.animate {
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease-out;
  will-change: transform, opacity;
}

/* Show state */
.animate.show {
  opacity: 1;
  visibility: visible;
}

/* Tipo da animação */
.fade-in.show {
  animation: fade-in 1s ease forwards;
}
.fade-in-up.show {
  animation: fade-in-up 1s ease forwards;
}
.slide-in-left.show {
  animation: slide-in-left 1s ease forwards;
}
.slide-in-right.show {
  animation: slide-in-right 1s ease forwards;
}
.zoom-in.show {
  animation: zoom-in 0.8s ease forwards;
}
.rotate-in.show {
  animation: rotate-in 1s ease-out forwards;
}

/* Fade In */
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Fade In Up */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide In Left */
@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide In Right */
@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Zoom In */
@keyframes zoom-in {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Rotate In */
@keyframes rotate-in {
  from {
    opacity: 0;
    transform: rotate(-90deg) scale(0.3);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}


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

  .footer-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
  .stat-title {
    font-size: 30px;
  }

  .stat-description {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 30px 0;
  }

  .stat-title {
    font-size: 24px;
  }

  .stat-description {
    font-size: 14px;
  }
}


/* Responsividade para dispositivos móveis */
@media screen and (max-width: 767px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}






