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

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #0099CC;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

p {
    margin-bottom: 15px;
}

section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Hero section is always visible */
.hero {
    opacity: 1;
    transform: translateY(0);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.cta-button {
    display: inline-block;
    background-color: #FF5722;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255, 87, 34, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }
}

.cta-button:hover {
    background-color: #E64A19;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    animation: none;
}

.cta-button i {
    margin-right: 8px;
}

/* Seção Hero */
.hero {
    background-color: #FFFFFF;
    color: #333;
    padding: 0;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 700px;
    text-align: center;
    padding: 0 20px;
}

.logo-grande {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.logo-icon {
    width: 440px;
    height: auto;
    margin-bottom: 10px;
}

.cleanse-logo {
    width: 100%;
    height: auto;
    display: block;
}

.logo-grande h1 {
    font-size: 3.5rem;
    color: #0099CC;
    margin-bottom: 0;
    line-height: 1;
}

.logo-grande p {
    font-size: 1.2rem;
    color: #333;
    margin-top: 0;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
    line-height: 1.4;
    color: #333;
}

.hero-title:after {
    display: none;
}

.hero-button {
    font-size: 1.2rem;
    padding: 15px 35px;
}

/* Seção Quem Somos */
.quem-somos {
    background-color: #0099CC;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

.quem-somos .container {
    position: relative;
    z-index: 2;
}

.quem-somos h2 {
    color: white;
    font-size: 2.6rem;
    margin-bottom: 30px;
}

.quem-somos h2:after {
    background: white;
}

.quem-somos-texto {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.quem-somos .wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url('img/wave-top-quem-somos.svg');
    background-size: cover;
    background-position: center bottom;
}

.quem-somos .wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url('img/wave-bottom-quem-somos.svg');
    background-size: cover;
    background-position: center top;
}

/* Seção Serviços Destaque */
.servicos-destaque {
    background-color: #0099CC;
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

.servicos-destaque-alt {
    padding-top: 80px;
}

.servicos-destaque h2 {
    color: white;
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 50px;
}

.servicos-destaque h2:after {
    background: white;
}

.servicos-destaque h3 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.wave-top {
    height: 150px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('img/wave-top.svg');
    background-size: cover;
    background-position: center bottom;
}

.destaque-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    gap: 50px;
}

.destaque-text {
    flex: 1;
    max-width: 500px;
}

.destaque-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.destaque-image {
    flex: 1;
}

.destaque-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
}

/* Seção Comparativo */
.comparativo {
    background-color: #f5f5f5;
    padding: 80px 0;
    opacity: 1;
    transform: translateY(0);
}

.comparativo h2 {
    color: #0099CC;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.comparativo h2:after {
    background: #0099CC;
}

.comparativo .subtitulo {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 50px;
}

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

.comparativo-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.antes-depois {
    display: flex;
    width: 100%;
}

.antes, .depois {
    flex: 1;
    position: relative;
}

.antes img, .depois img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 15px;
    font-weight: bold;
    border-radius: 5px;
    font-size: 0.9rem;
}

.cta-center {
    text-align: center;
    margin-top: 30px;
}

/* Seção Depoimentos Clientes */
.depoimentos-clientes {
    background-color: #f5f5f5;
    padding: 80px 0;
    opacity: 1;
    transform: translateY(0);
    border-top: 1px solid #ddd;
}

.depoimentos-clientes h2 {
    color: #0099CC;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.depoimentos-clientes h2:after {
    background: #0099CC;
}

.whatsapp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.whatsapp-chat {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    max-width: 380px;
    height: 650px;
    margin: 0 auto;
}

.chat-header {
    background-color: #075E54;
    padding: 10px;
    color: white;
}

.chat-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.chat-person {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
}

.back-arrow {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.back-arrow i {
    margin-right: 5px;
}

.person-info {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.person-name {
    font-weight: 500;
}

.chat-actions {
    display: flex;
    gap: 15px;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    background-image: url('img/whatsapp-bg.jpg');
    background-size: cover;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.message {
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    position: relative;
    word-wrap: break-word;
}

.message p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.message-time {
    font-size: 0.7rem;
    color: #888;
    text-align: right;
    display: block;
}

.client {
    background-color: #DCF8C6;
    align-self: flex-start;
    border-radius: 8px 8px 8px 0;
}

.business {
    background-color: white;
    align-self: flex-end;
    border-radius: 8px 8px 0 8px;
}

.audio {
    width: 70%;
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 10px;
}

.audio-wave {
    flex: 1;
    height: 30px;
    background-image: url('img/audio-wave.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.audio-time {
    font-size: 0.75rem;
    color: #555;
}

.file {
    background-color: white;
}

.file-info {
    display: flex;
    align-items: center;
}

.file-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.file-details {
    flex: 1;
}

.file-name {
    font-size: 0.85rem;
    font-weight: 500;
}

.file-meta {
    font-size: 0.75rem;
    color: #777;
}

.chat-keyboard {
    height: 50px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.keyboard-area {
    flex: 1;
    height: 40px;
    background-image: url('img/whatsapp-keyboard.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Seção Contato */
.contato {
    background-color: #f9f9f9;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contato-info {
    padding-right: 30px;
}

.contato-info ul {
    margin: 30px 0;
}

.contato-info ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contato-info ul li i {
    margin-right: 15px;
    width: 20px;
    color: #0056b3;
}

.social-media {
    display: flex;
    gap: 15px;
}

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

.social-media a:hover {
    background-color: #003d7a;
    transform: translateY(-3px);
}

.contato-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0056b3;
}

/* Footer */
footer {
    background-color: #FFFFFF;
    color: #333;
    padding: 50px 0;
    text-align: center;
}

.logo-footer {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-icon-small {
    width: 240px;
    height: auto;
    margin-bottom: 10px;
}

.cleanse-logo-footer {
    width: 100%;
    height: auto;
    display: block;
}

.logo-footer h2 {
    font-size: 2.5rem;
    margin-bottom: 0;
    color: #0099CC;
}

.logo-footer p {
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Seção Solicite Orçamento */
.orcamento {
    background-color: #f5f5f5;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

.titulo-orcamento {
    font-size: 2.8rem;
    text-align: center;
    color: #0099CC;
    margin-bottom: 25px;
}

.titulo-orcamento:after {
    background: #0099CC;
}

.subtitulo-orcamento {
    text-align: center;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.botao-container {
    text-align: center;
    margin-top: 40px;
}

.botao-orcamento {
    font-size: 1.3rem;
    padding: 18px 40px;
}

/* Seção Perguntas Frequentes */
.faq {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
    opacity: 1;
    transform: translateY(0);
    border-top: 1px solid #eee;
}

.faq h2 {
    color: #0099CC;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.faq h2:after {
    background: #0099CC;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-pergunta {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-pergunta:hover {
    background-color: #f0f7fa;
}

.faq-pergunta h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.faq-icon {
    color: #0099CC;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-resposta {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-resposta p {
    margin: 0;
    padding-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.faq-item.ativo .faq-resposta {
    max-height: 300px;
    padding-top: 10px;
}

.faq-item.ativo .faq-icon i {
    transform: rotate(45deg);
}

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

@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .sobre-content,
    .contato-content,
    .destaque-content {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    .sobre-image,
    .destaque-image {
        margin-top: 30px;
        order: -1;
    }
    
    .destaque-text {
        text-align: center;
        max-width: 100%;
    }
    
    .comparativo-grid {
        grid-template-columns: 1fr;
    }

    .quem-somos-texto {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
    
    nav {
        margin-top: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 10px 15px;
    }
    
    .hero-content h2,
    .servicos-destaque h3 {
        font-size: 1.8rem;
    }
    
    .hero-content p,
    .servicos-destaque p {
        font-size: 1.1rem;
    }
    
    .servicos-grid,
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .depoimento {
        min-width: 300px;
    }
    
    .antes-depois {
        flex-direction: column;
    }
    
    .antes, .depois {
        width: 100%;
    }
    
    .whatsapp-grid {
        grid-template-columns: 1fr;
    }

    .quem-somos {
        padding: 80px 0 60px;
    }

    .quem-somos h2 {
        font-size: 2rem;
    }

    .quem-somos-texto {
        font-size: 1rem;
    }

    .titulo-orcamento {
        font-size: 2rem;
    }
    
    .subtitulo-orcamento {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .orcamento {
        padding: 60px 0;
    }

    .faq-pergunta h3 {
        font-size: 1rem;
    }
    
    .faq-pergunta {
        padding: 15px 20px;
    }
    
    .faq-resposta {
        padding: 0 20px;
    }
    
    .faq h2 {
        font-size: 2rem;
    }
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    animation: none;
} 