/* Reset geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito Sans", sans-serif;
    background-color: #f4f4f4;
    text-align: center;
    color: #333;
    overflow-x: hidden;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.menu ul li {
    flex: 1;
    text-align: center;
}

.menu ul li a {
    text-decoration: none;
    color: #007BFF;
    font-size: 17px;
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.menu ul li a:hover {
    color: #0056b3;
}

.logo {
    flex: 2;
    text-align: center;
}

.logo img {
    max-height: 50px;
    width: auto;
}

/* Estilo do botão do WhatsApp */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366; /* Verde oficial do WhatsApp */
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 30px; /* Deixa o botão arredondado */
    transition: background 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Ícone do WhatsApp */
.whatsapp-btn img {
    width: 24px;
    height: 24px;
}

/* Efeito hover */
.whatsapp-btn:hover {
    background-color: #1EBE5D;
}


/* Seção Hero */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 5%;
    padding-top: 150px;
    gap: 40px;
}

/* Coluna de Texto */
.hero-content {
    flex: 1;
    max-width: 50%;
    text-align: left;
    color: rgb(0, 0, 0);
    z-index: 2;
}

/* Título */
.hero-title {
    font-size: 48px;
    font-weight: 200;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Subtítulo */
.hero-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 200;
}

/* Botão */
.hero-btn {   
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    background: #007BFF;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 30px; /* Deixa o botão arredondado */
    transition: background 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
    background: #0056b3;
}

/* Coluna do Vídeo */
.hero-video-container {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
}

/* Vídeo */
.hero-video {
    width: 100%;
    height: 100%;
    background: url('videopreview.webp') center/cover no-repeat;
    object-fit: cover; /* Garante que o vídeo cubra a área sem distorcer */
}

/* Responsividade */
@media (max-width: 1024px) {

    .hero-btn {   
        padding: 12px 20px;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 5%;
        padding-top: 100px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-video-container {
        width: 100%;
        height: 50vh;
    }
}



@keyframes scroll{
    from{
        opacity: 0;
        scale: 0.5;
    }
    to{
        opacity: 1;
        scale: 1;
    }
}

/* Seção de Inspiração */
.inspiration-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 80px auto;
    padding: 20px;
    gap: 40px;
    animation: scroll linear;
    animation-timeline: view();
    animation-range: entry 0 cover 50%;
}

.image-container {
    position: relative;
    width: 50%;
}

.image-container img {
    width: 100%;
    border-radius: 10px;
}

.overlay-image {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.text-container {
    width: 50%;
}

.text-container h3 {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.text-container h1 {
    font-size: 35px;
    color: var(--cor-texto-escuro);
    margin-bottom: 15px;
    font-weight: 300;
    text-transform: uppercase;
}


/* Botões */
.buttons {
    padding-top: 20px ;
    display: flex;
    gap: 10px;
    justify-content: center;
}



/* Responsividade */
@media (max-width: 768px) {
    .inspiration-section {
        flex-direction: column;
        text-align: center;
    }
    
    .image-container {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .text-container {
        width: 100%;
    }
    
    .buttons {
        justify-content: center;
    }
}

/* Seção de Diferenciais */
.differentials-section {
    text-align: center;
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
}

.differentials-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-content: center;
    align-items: start;
}

.differential-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    transition: transform 0.3s;
}

.differential-item:hover {
    transform: scale(1.05);
}

.differential-item img {
    width: 60px;
    height: auto;
}

.differential-text h3 {
    font-size: 23px;
    font-weight: 300;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.differential-text p {
    font-size: 14px;
    color: #555;
}

@media (max-width: 768px) {
    .differentials-container {
        grid-template-columns: 1fr;
    }
}


/* Container do Carrossel */
.carousel-container {
    width: 100%;
    overflow: hidden;
    text-align: center;
    background-color: #f8f8f8;
}

/* Área do carrossel */
.carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Esconde a barra no Firefox */
    -ms-overflow-style: none; /* Esconde a barra no Edge */
    padding: 20px;
}

/* Esconde a barra de rolagem no Chrome */
.carousel::-webkit-scrollbar {
    display: none;
}

/* Cada item do carrossel */
.carousel-item {
    flex: 0 0 auto;
    width: 300px; /* Ajustável conforme necessário */
    text-align: start;
    padding: 15px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-in-out forwards;
}

/* Define uma altura fixa para os cards */
.carousel-item {
    height: 450px; /* Ajustável conforme necessário */
    display: flex;
    flex-direction: column;
}

/* Imagem do carrossel com altura fixa e corte lateral */
.carousel-item img {
    width: 100%;
    height: 300px; /* Define uma altura fixa */
    object-fit: cover; /* Faz com que a imagem preencha a área, cortando as laterais se necessário */
   
}

.titulowrapper {
    font-size: 30px;
    font-weight: 300;
    color: #222;
    padding-top: 80px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.subtitulo {
    font-size: 15px;
    font-weight: 300;
    color: #222;
    padding-top: 20px;
    margin-bottom: 5px;
}


/* Texto dentro do carrossel */
.carousel-item h3 {
    font-size: 25px;
    font-weight: 300;
    color: #222;
    padding-top: 5px;
    margin-bottom: 5px;
}

.carousel-item p {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

/* Animação de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .carousel {
        gap: 15px;
    }

    .carousel-item {
        width: 280px;
        height: 200px; /* Ajuste proporcional para telas menores */
    }

    .carousel-item img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .titulowrapper {
        padding-top: 10px;
    }
    
    .carousel-container {
        padding: 0px 15px;
    }

    .carousel {
        gap: 10px;
    }

    .carousel-item {
        width: 260px;
        height: 380px;
    }

    .carousel-item img {
        height: 160px;
    }

    .image-comparison {
        padding: 10px;
      }
}




.image-comparison {
    max-width: 700px;
    margin: 20px auto;
    border-radius: 20px;
    overflow: hidden;
  }
  
  .image-comparison img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
  }
  
  .image-comparison .images-container {
    position: relative;
    display: flex;
  }
  
  .image-comparison .images-container .before-image {
    position: absolute;
    top: 0;
    width: 50%;
  }
  
  .image-comparison .slider {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
  }
  
  .image-comparison .slider-line {
    position: absolute;
    height: 100%;
    width: 4px;
    background: #fff;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .image-comparison .slider-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    color: #fff;
    transform: translate(-50%, -50%) rotateZ(90deg);
  }


/* Container das imagens */
.image-container {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Configuração base das imagens */
.before,
.after {
    flex: 1;
    height: 100%;
    background-repeat: no-repeat;
    background-color: white;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Define a largura inicial da imagem antes */
.after {
    width: 125px;
}

/* Botão deslizante */
.scroller {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: transparent;
    opacity: 0.9;
    pointer-events: auto;
    cursor: pointer;
    border: 5px solid #fff;
}

/* Efeito hover no botão */
.scroller:hover {
    opacity: 1;
}

/* Ajusta opacidade durante movimento */
.scrolling {
    pointer-events: none;
    opacity: 1;
}

/* Estilização do botão deslizante */
.scroller:before,
.scroller:after {
    content: " ";
    display: block;
    width: 7px;
    height: 9999px;
    position: absolute;
    left: 50%;
    margin-left: -3.5px;
    z-index: 30;
    transition: 0.1s;
    background: #fff;
}

.scroller:before {
    top: 100%;
}

.scroller:after {
    bottom: 100%;
}

/* Responsividade */
@media (max-width: 768px) {
    .wrapper {
        width: 95%;
        height: 400px;
    }

    .scroller {
        width: 40px;
        height: 40px;
    }
}

/* Seção de Garantia */
.warranty-section {
    backdrop-filter: blur(10px);
    background: rgba(139, 222, 255, 0.2);
    color: white;
    text-align: center;
    padding: 50px 20px;
    margin: 50px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container do conteúdo */
.warranty-content {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #000;
    max-width: 900px;
    text-align: left;
}

/* Selo de Garantia */
.warranty-badge {
    width: 120px;
    height: auto;
}

/* Texto da garantia */
.warranty-text h2 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 10px;
    text-transform: uppercase;

}

.warranty-text p {
    font-size: 18px;
    line-height: 1.5;
}

/* Responsividade */
@media (max-width: 768px) {
    .warranty-content {
        flex-direction: column;
        text-align: center;
    }

    .warranty-badge {
        width: 100px;
    }
}


/* Rodapé */
.footer {
    backdrop-filter: blur(10px);
    background: rgba(139, 222, 255, 0.2);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    color: #007BFF;
    padding: 40px 90px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Logo */
.footer-logo img {
    width: 100px;
    height: auto;
}

/* Links */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #3BC6FE;
}

/* Ícones sociais */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social img {
    width: 30px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-social a:hover img {
    transform: scale(1.1);
}

/* Rodapé inferior */
.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Seção de imagem de fundo */
.full-image-section {
    position: relative;
    width: 100%;
    text-align: center;    
    padding-top: 80px;
    padding-bottom: 5px;
}

/* Imagem de fundo com título */
.image-background {
    background: url('image-overlay.webp') center/cover no-repeat;
    width: 100%;
    height: 50vh; /* Ajuste conforme necessário */
    display: flex;    
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.image-background-piso h2, .image-background h2 {
    font-weight: 600;    
    font-size: 35px;
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.image-background-piso {
    background: url('pisotermico.webp') bottom/cover no-repeat;
    width: 100%;
    height: 50vh; /* Ajuste conforme necessário */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
}

/* Overlay semi-transparente */
.image-background-piso::before {
    content: "";
    position: absolute;
    top: 81px;
    left: 0;
    width: 100%;
    height: 42%;
    background: rgba(48, 48, 48, 0.5); /* Ajuste a opacidade conforme necessário */
}

/* Overlay semi-transparente */
.image-background::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 28.6%;
    background: rgba(48, 48, 48, 0.5); /* Ajuste a opacidade conforme necessário */
}

/* Grid de produtos */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    position: relative;
    top: -50px; /* Sobreposição acima da imagem */
    max-width: 1200px;
    margin: auto;
}

.product-grid-d {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    position: relative;
    top: 0 px;
    max-width: 1200px;
    margin: auto;
}


/* Cada produto */
.product-item {
    background: white;
    padding: 15px;
    text-align: start;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 250px;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: scale(1.05);
}

/* Imagem do produto */
.productimg {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

/* Título do produto */
.product-item h3 {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 10px;
    
    color: #222;
}

/* Botão */
.btn {
    display: inline-block;
    padding: 10px 15px;
    background: #e4e1dd;
    color: #383838;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
}


/* Responsividade */
@media (max-width: 1024px) {
    
    .image-background-piso h2, .image-background h2 {
        font-weight: 300;    
        font-size: 30px;
        padding: 20px;
    }

    .product-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-grid-d {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .image-background {
        font-size: 24px;
        height: 40vh;
    }

    .product-grid {
        flex-direction: column;
        align-items: center;
    }

    .product-grid-d {
        flex-direction: column;
        align-items: center;
    }

    .product-item {
        width: 90%;
    }
}

/* Container principal */
.google-reviews {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 10px;
    justify-content: center;
    align-items: center;
}

/* Cabeçalho com título e botão */
.reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding:50px 20px;
}

.reviews-header h2 {
    font-size: 30px;
    font-weight: 300;
    color: #222;
    text-align: center;
    text-transform: uppercase;
}

.review-btn {
    background: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.review-btn:hover {
    background: #0056b3;
}

/* Carrossel */
.reviews-carousel {
    display: flex;
    align-items: center;
    position: relative;
}

.reviews {
    display: flex;
    overflow: hidden;
    gap: 15px;
    scroll-behavior: smooth;
    width: 100%;
}

/* Cartão de avaliação */
.review-card {
    min-width: 280px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.review-date {
    font-size: 12px;
    color: #777;
    margin-bottom: 5px;
}

.stars {
    font-size: 18px;
    color: gold;
    margin-bottom: 10px;
}

.review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
}

.google-logo {
    width: 20px;
    margin-top: 10px;
}

.google-ft {
    width: 40%;
    height: auto;
    margin-top: 10px;
}

/* Botões do carrossel */
.prev,
.next {
    background: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    transition: 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.prev:hover,
.next:hover {
    background: #f1f1f1;
}

.prev {
    left: -30px;
}

.next {
    right: -30px;
}

/* Responsividade */
@media (max-width: 768px) {

    
    .google-reviews {
        width: 100%;
        max-width: 1200px;
        margin: auto;
        padding: 10 px;
    }
    
    
    .reviews-header {
        justify-content: center;
        align-items: center;
    }

    .review-btn {
        margin-top: 10px;
    }

    .review-card {
        min-width: 250px;
    }

    .prev {
        left: -15px;
    }

    .next {
        right: -15px;
    }
}

/* Seção principal */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    gap: 50px;
}

/* Texto da seção */
.about-content {
    flex: 1;
    text-align: left;
}

.about-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-content h1 {
    font-size: 30px;
    font-weight: 300;
    color: #222;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Estatísticas */
.about-stats {
    display: flex;
    gap: 50px;
}

.stat h2 {
    font-size: 32px;
    font-weight: bold;
    color: #222;
}

.stat p {
    font-size: 16px;
    color: #555;
}

/* Google Maps */
.about-map {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 1024px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .about-map {
        width: 100%;
        height: 300px;
    }
}

/* Seção da Timeline */
.timeline-section {
    width: 100%;
    max-width: 900px;
    margin: auto;
    text-align: center;
    padding: 50px 20px;
}

.timeline-section h2 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #222;
    text-transform: uppercase;
}

/* Estrutura da Timeline */
.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-left: 40px;
}

/* Linha vertical */
.timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    width: 4px;
    height: 100%;
    background: #007BFF;
}

/* Cada item da Timeline */
.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Ícone dos Passos */
.timeline-icon {
    width: 40px;
    height: 40px;
    background: #007BFF;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

/* Conteúdo da Timeline */
.timeline-content {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    flex-grow: 1;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 300;
    text-transform: uppercase;
    color: #333;
}

.timeline-content p {
    font-size: 16px;
    color: #666;
}

/* Responsividade */
@media (max-width: 768px) {
    .timeline {
        padding-left: 30px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .timeline-content {
        width: 100%;
    }
}

/* Estilos do Popup */
.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.popup-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

#whatsappForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#whatsappForm input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

#whatsappForm button {
    padding: 10px;
    background-color: #25d366;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

#whatsappForm button:hover {
    background-color: #128c7e;
}

/* Estilos CSS */
.contact-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 1px 1px 2px #888;
    z-index: 1000;
    cursor: pointer;
}

.contact-button i {
    margin-top: 16px;
}

.contact-popup {
    display: none; /* Oculto inicialmente */
    position: fixed;
    bottom: 100px;
    width: 300px;
    right: 40px;
    border: 3px solid #f1f1f1;
    z-index: 1001;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.contact-popup input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-popup button {
    width: 100%;
    padding: 10px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


