@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mobile {
    display: block;
}

@media screen and (max-width: 768px) {
    .mobile {
        display: none;
    }
}

body {
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    background-color: white;
    overflow-x: hidden;
}

/* janela */
@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    80% {
        transform: translateX(-10%);
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes vibrate {
    0% { transform: translateX(0); }
    20% { transform: translateX(-2px); }
    40% { transform: translateX(2px); }
    60% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
    100% { transform: translateX(0); }
}

.chat-window {
    animation: slideInRight 0.6s ease-out, vibrate 0.4s ease-in 0.8s;
}

.janela {
    position: fixed;
    bottom: 180px;
    right: 20px;
    z-index: 9999;
    font-family: 'Segoe UI', sans-serif;
}

.chat-window {
    width: 300px;
    background: url('fundo\ de\ janela.png') no-repeat center center;
    background-size: cover;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    overflow: hidden;
    position: relative;
}

.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.chat-window::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(222, 220, 220, 0.81);
    z-index: 0;
}

.chat-body, .chat-header, .footer {
    position: relative;
    z-index: 1;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #27351f;
    color: #fff;
    position: relative;
}

.header-text {
    flex: 1;
}

.name {
    font-weight: bold;
    font-size: 1rem;
}

.subtitle {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #c1ffce;
    margin-top: 2px;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background-color: #00c853;
    border-radius: 50%;
    margin-right: 5px;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

.chat-body {
    padding: 1rem;
}

.message {
    background-color: #f1f1f1;
    padding: 0.7rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.message .name {
    color: #27351f;
    font-weight: bold;
    margin-bottom: 4px;
}

.conversation-btn {
    display: inline-block;
    background-color: #25D366;
    color: white;
    text-align: center;
    padding: 0.7rem 1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.conversation-btn:hover {
    background-color: #1ebc57;
}

.footer {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    color: #888;
    text-align: center;
    background-color: #f9f9f9;
}

/* Cabeçalho */
header {
    background-color: transparent;
    position: absolute;
    padding: 10px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    top: 0;
    width: 100%;
    z-index: 10;
}

.header-content {
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 1;
    justify-content: space-between;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    background-color: white;
    border-radius: 50%;
    padding: 8px;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.7s ease, background-color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    font-weight: bold;
    color: #111;
    transition: color 0.3s;
}

nav a:first-child {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    color: #fbe202;
}

nav a:hover {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    color: #fbe202;
}

.logo {
    padding-top: 2%;
    height: 110px;
    object-fit: contain;
}

/* Hero */
.hero-agendamento {
    background-image: url('desktop\ ketlin.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-left: 8%;
    color: white;
    position: relative;
}

.hero-agendamento::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.08);
    z-index: 0;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.conteudo {
    position: relative;
    z-index: 1;
    max-width: 500px;
    animation: fadeInLeft 2s ease forwards;
    color: #4b4a4a;
}

.subtitulo {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #000;
}

.titulo {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.btn-agendar {
    background-color: #27351f;
    border: none;
    color: white;
    padding: 14px 60px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.6s ease;
}

.btn-agendar:hover {
    transform: scale(1.05);
}

.btn-agendar:active {
    transform: scale(1);
}

/* Seção de serviços */
.servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 40px;
    background: #e5e5e5;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    margin-top: -30%;
    z-index: 1;
    background-color: #fbe202;
    border: 0px solid white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.174);
    box-shadow: 2px 5px 10px rgba(0,0,0,0.6);
    padding: 30px;
    text-align: center;
    transition: 0.3s;
    animation: slideUp 1s ease-out forwards;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.card i {
    font-size: 2.8rem;
    color: #141f0f;
}

.servicos h3 {
    color:black;
    padding-bottom: 10px;
}

.servicos p {
    color: black;
    font-family: 'Lora', serif;
    text-shadow: 0.5px 0.5px 2px rgba(0, 0, 0, 0.2);
}

/* imagem */
.hero-psicologa {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #e5e5e5;
    flex-wrap: wrap;
}

.text-content {
    max-width: 50%;
    padding-left: 7%;
    color: #111;
}

.text-content h1 {
    font-size: 48px;
    color: #27351f;
    margin-bottom: 20px;
}

.text-content h2 {
    color: #27351f;
    font-weight: bold;
    font-size: 22px;
    margin: 20px 0 10px;
    text-shadow: 1px 1px #00000020;
}

.text-content p {
    font-size: 18px;
    margin-bottom: 10px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #27351f;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    transition: transform 0.7s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
}

.whatsapp-btn:active {
    transform: scale(1);
}

.image-container {
    max-width: 40%;
}

@keyframes pingoDeChuva {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    60% {
        opacity: 1;
        transform: translateY(10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.image-container img {
    width: 100%;
    padding-right: 7%;
    border-radius: 50%;
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
    transition: all 0.3s ease-out;
}

.text-content li {
    list-style: none;
}

.image-container.pingou img {
    animation: pingoDeChuva 0.8s ease-out forwards;
}

/* loja */
.ebook-store-07 {
    background: #e5e5e5;
    padding: 80px 0;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.container-07 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.header-section-07 {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-07 {
    color: #27351f;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.highlight-07 {
    color: #4a7c59;
    position: relative;
}

.highlight-07:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(74, 124, 89, 0.2);
    z-index: -1;
}

.section-subtitle-07 {
    color: #555;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.divider-07 {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #4a7c59 0%, #27351f 100%);
    margin: 25px auto;
    border-radius: 3px;
}

.testimonial-banner-07 {
    background-color: #27351f;
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 800px;
    position: relative;
    box-shadow: 0 10px 30px rgba(39, 53, 31, 0.2);
}

.testimonial-banner-07:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-content-07 {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 10px;
}

.testimonial-content-07 p {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 5px;
    line-height: 1.5;
}

.testimonial-author-07 {
    font-weight: 600;
    font-size: 14px;
    opacity: 0.9;
}

.rating-stars-07 {
    width: 100px;
    margin-bottom: 10px;
}

.ebook-grid-07 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.ebook-card-07 {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid #eee;
}

.ebook-card-07:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.ebook-cover-07 {
    height:400px;
    overflow: hidden;
    position: relative;
}

.ebook-image-07 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.ebook-card-07:hover .ebook-image-07 {
    transform: scale(0.9);
}

.ebook-badge-07 {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #4a7c59;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.bestseller-07 {
    background: linear-gradient(90deg, #d4af37 0%, #f9d423 100%);
    color: #333;
}

.new-07 {
    background: linear-gradient(90deg, #ff6b6b 0%, #ff8e8e 100%);
}

.ebook-content-07 {
    padding: 25px;
}

.ebook-header-07 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.ebook-header-07 h3 {
    color: #27351f;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.price-tag-07 {
    background-color: #f0f7f0;
    color: #4a7c59;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
    margin-left: 15px;
}

.ebook-description-07 {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 500;
}

.ebook-features-07 {
    margin: 20px 0;
    padding: 0;
}

.ebook-features-07 li {
    color: #444;
    margin-bottom: 12px;
    font-size: 14px;
    list-style: none;
    padding-left: 5px;
    position: relative;
    line-height: 1.5;
}

.feature-icon-07 {
    color: #4a7c59;
    font-weight: bold;
    margin-right: 8px;
}

.value-box-07 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    padding: 12px;
    border-radius: 8px;
    margin: 20px 0;
}

.value-text-07 {
    font-size: 13px;
    color: #777;
}

.discount-07 {
    background-color: #ff6b6b;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.buy-btn-07 {
    display: block;
    text-align: center;
    background: linear-gradient(90deg, #27351f 0%, #4a7c59 100%);
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.buy-btn-07:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(39, 53, 31, 0.3);
}

.buy-btn-07:active {
    transform: translateY(0);
}

.btn-text-07 {
    display: block;
    font-size: 16px;
}

.btn-subtext-07 {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    margin-top: 3px;
}

.bonus-tag-07 {
    font-size: 12px;
    color: #4a7c59;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

/* Estilos do Combo */
.combo-card-07 {
    border: 2px solid #4a7c59;
    position: relative;
}

.combo-ribbon-07 {
    position: absolute;
    top: 15px;
    left: -8px;
    background: linear-gradient(90deg, #d4af37 0%, #f9d423 100%);
    color: #333;
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.combo-ribbon-07:before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 0;
    border-right: 8px solid transparent;
    border-top: 8px solid #b38f1a;
}

.combo-price-07 {
    text-align: right;
}

.old-price-07 {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    display: block;
}

.new-price-07 {
    color: #27351f;
    font-size: 22px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.combo-includes-07 {
    margin: 20px 0;
}

.combo-item-07 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    font-size: 14px;
}

.combo-item-07 span {
    background-color: #4a7c59;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.combo-features-07 {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.combo-features-07 li {
    color: #444;
    margin-bottom: 10px;
    font-size: 14px;
    list-style: none;
}

.combo-btn-07 {
    background: linear-gradient(90deg, #d4af37 0%, #f9d423 100%);
    color: #333;
}

.combo-btn-07:hover {
    background: linear-gradient(90deg, #f9d423 0%, #d4af37 100%);
}

.value-proposition-07 {
    margin: 20px 0;
}

.value-item-07 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #555;
}

/* Seção de Garantia */
.guarantee-section-07 {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.guarantee-card-07 {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.guarantee-icon-07 {
    flex-shrink: 0;
}

.guarantee-content-07 h4 {
    color: #27351f;
    font-size: 18px;
    margin-bottom: 10px;
}

.guarantee-content-07 p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.payment-methods-07 {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.payment-methods-07 p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.payment-icons-07 {
    display: flex;
    gap: 15px;
}

.faq-cta-07 {
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
    color: #555;
}

.faq-cta-07 a {
    color: #4a7c59;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed #4a7c59;
}

/* Animações */
.pulse-animation-07 {
    animation: pulse-07 2s infinite;
}

@keyframes pulse-07 {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 124, 89, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(74, 124, 89, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 124, 89, 0);
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .guarantee-section-07 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title-07 {
        font-size: 32px;
    }
    
    .section-subtitle-07 {
        font-size: 16px;
    }
    
    .testimonial-content-07 p {
        font-size: 16px;
    }
    
    .ebook-grid-07 {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .ebook-cover-07 {
        height: 390px;
    }
    .ebook-header-07 {
        flex-direction: column;
    }
    
    .price-tag-07 {
        margin-left: 0;
        margin-top: 10px;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .section-title-07 {
        font-size: 28px;
    }
    
    .ebook-cover-07 {
        height: 390px;
    }
    
    .new-price-07 {
        font-size: 20px;
    }
    
    .buy-btn-07 {
        padding: 12px;
    }
    
    .btn-text-07 {
        font-size: 15px;
    }
}

/* formulario */
.dupla-section {
    background: linear-gradient(to bottom, #27351f 40%, #384e2b 100%);
    padding: 4rem 2rem;
    clip-path: ellipse(150% 100% at 50% 0);
    color: #333;
}

.container {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.texto {
    background-color: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
    flex: 1;
    min-width: 300px;
}

.texto h2 {
    color: #27351f;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.texto button {
    background: #27351f;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    letter-spacing: 2px;
    margin-top: 1rem;
    font-weight: bold;
    cursor: pointer;
}

.formulario {
    flex: 1;
    min-width: 300px;
}

.formulario h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.formulario input,
.formulario textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    margin-bottom: 1rem;
    border-radius: 20px;
    font-size: 1rem;
    background-color: white;
    margin-bottom: 2rem;
}

.formulario button {
    background: #1c2617;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    letter-spacing: 5px;
    font-weight: bold;
    cursor: pointer;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.texto, .formulario {
    opacity: 0;
    transform: translateX(0);
    transition: opacity 0.5s ease;
}

.texto.visivel-esq {
    animation: slideInLeft 2s ease forwards;
}

.formulario.visivel-dir {
    animation: slideInRight 2s ease forwards;
}

/* contato */
.cura-section {
    margin-top: 5%;
    background-color: white;
    padding: 1rem 2rem;
}

.cura-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.cura-img img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 10px rgba(0,0,0,0.4);
    animation: slideInLeft 1s ease forwards;
}

.cura-texto {
    flex: 1;
    color: #000;
    max-width: 750px;
}

.cura-texto h2 {
    color: #27351f;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cura-texto p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cura-texto strong {
    font-weight: bold;
}

.cura-texto button {
    background: #27351f;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    letter-spacing: 4px;
    font-weight: bold;
    cursor: pointer;
}

/* contato2 */
.lista-section {
    margin-left: 10%;
    margin-top: 5%;
    background-color: white;
    padding: 4rem 2rem;
}

.lista-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
    margin: auto;
    gap: 2rem;
}

.lista-img img {
    width: 350px;
    height: auto;
    border-radius: 2rem;
    box-shadow: 0 10px 10px rgba(0,0,0,0.4);
}

/* Efeito Pingo de Chuva na Imagem */
@keyframes pingoDeChuva {
    0% {
        opacity: 0;
        transform: translateY(-100px) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cura-img img, .lista-img img {
    opacity: 0;
    transform: translateY(-100px) scale(0.5);
}

.cura-img img.apareceu, .lista-img img.apareceu {
    animation: pingoDeChuva 0.8s ease-out forwards;
}

.lista-texto {
    flex: 1;
    max-width: 900px;
    font-size: 1.1rem;
    color: #111;
    animation: slideInRight 1s ease forwards;
}

.lista-texto ul {
    list-style: none;
    padding: 0;
}

.lista-texto li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.lista-texto .check {
    color: #27351f;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
}

/* ultimas informacoes */
.localizacao-section05 {
    margin-left: 18%;
    background-color: white;
    padding: 60px 50px;
    font-family: 'Poppins', sans-serif;
}

.container-localizacao05 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.mapa05 {
    flex: 1 1 45%;
}

.titulo-localizacao05 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.info-localizacao05 {
    flex: 1 1 45%;
    color: #000;
}

.logo-localizacao05 {
    max-width: 200px;
    margin-bottom: 20px;
}

.info-localizacao05 h3 {
    font-size: 1.2rem;
    margin-top: 15px;
}

.info-localizacao05 p,
.servicos05 li {
    font-size: 1rem;
    margin: 5px 0;
}

.servicos05 {
    list-style: none;
    padding: 0;
}

/* rodape */
.footer-contato06 {
    background-color: #27351f;
    color: #fff;
    padding: 60px 20px 40px;
    position: relative;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.curva-topo06 {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #3d572d;
    border-bottom-left-radius: 100% 40px;
    border-bottom-right-radius: 100% 40px;
    z-index: 1;
}

.container-footer06 {
    padding-top: 5%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.texto-footer06 h2 {
    font-size: 2.8rem;
    color: #e6e6e6;
    margin-bottom: 20px;
}

.texto-footer06 span {
    font-weight: bold;
    font-size: 3.2rem;
}

.info-footer06 {
    max-width: 600px;
}

.info-footer06 p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f1f1f1;
}

.botoes-footer06 {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-agendar06 {
    background: #000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-agendar06:hover {
    background: #333;
}
  .btn-contato06 {
    background: transparent;
    border: 1.5px solid #fff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
  }
  
  .btn-contato06:hover {
    background: #fff;
    color: #27351f;
  }
/*linkmike*/
.container-central {
  padding-top: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.creditos {
  font-size: 0.9rem;
  color: #000000;
}

.creditos .link-dev {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.creditos .link-dev:hover {
  text-decoration: underline;
}
/* telas not */
@media (min-width: 768px) and (max-width: 940px) {
  .janela {
    position: fixed;
    bottom:80px;
    right: 20px;
    z-index: 9999;
    font-family: 'Segoe UI', sans-serif;
  }

  /* servicos */
  .card {
    margin-top: -50%;
    z-index: 1;
    border: 0px solid white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    animation: slideUp 1s ease-out forwards; /* A animação é aplicada aqui */
  }
  /* imagem */
/* Seção de serviços */
.servicos {
  display: grid; /* aqui estava 'block', troque para grid */
  z-index: 1; /* não precisa ser alto aqui, só para empilhamento leve */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 60px 40px;
  background: #e5e5e5;
  position: relative; /* necessário para empilhamento correto */
}

.card {
  margin-top: -20px;
  position: relative;
  z-index: 9999; 
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 0px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  animation: slideUp 1s ease-out forwards;
}
  /* imagem */
  .image-container {
    max-width: 400px; /* ou 600px, como preferir */
    margin: 0 auto;
  }
  
  .image-container img {
    width: 100%;
    max-width: 100%;
    padding-right: 0%;
    border-radius: 50%;
    opacity: 0;
    transform: translateY(-50px) scale(1);
    transition: all 0.3s ease-out;
  }
       
  .hero-psicologa {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    background-color: #e5e5e5; /* cor de fundo parecida da imagem */
    flex-wrap: wrap;
  }
  .text-content {
    max-width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    color: #111;
  }
  .text-content li {
    list-style: none;
  }
  .text-content h1 {
    text-align: center;
    font-size: 35px;
    margin-bottom: 20px;
  }
  .text-content h2 {
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    margin: 20px 0 10px;
  }
  
  .text-content p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 52px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    margin-left: 29%;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    transition: transform 0.7s ease, background-color 0.3s ease;
    margin-bottom: 10%;
  }
 /* planos */
.linha-planos2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 colunas */
  gap: 20px;
  justify-items: center;
  padding: 10px 0 30px;
}

/* card estilo unificado */
.card2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 250px;
  text-align: center;
  animation: tremer 0.4s infinite ease-in-out;
  margin: 0 auto;
}

/* título do card */
.card2 h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* texto do card */
.card2 p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.4;
  text-align: center;
}

/* botão */
.btn-plano2 {
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  text-align: center;
  display: inline-block;
}

/* contato */
.cura-section {
  margin-top: 5%;
  padding: 2rem;
  text-align: center;
}

.cura-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: auto;
  gap: 2rem;
}

.cura-img img {
  max-width: 100%;
  max-height: 100%;
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 10px rgba(0,0,0,0.2);
  animation: slideInLeft 1s ease forwards;
}

.cura-texto {
  display: block;
  max-width: 100%;
  color: #000;
}

.cura-texto h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cura-texto p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cura-texto strong {
  font-weight: bold;
}

.cura-texto button {
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  letter-spacing: 4px;
  font-weight: bold;
  cursor: pointer;
}

/* contato2 */
.lista-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: auto;
  gap: 2rem;;
}

.lista-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: auto;
  gap: 2rem;
}

.lista-img img {
  max-width: 100%;
  max-height: 100%;
  width: 350px;
  height: auto;
  border-radius: 2rem;
  box-shadow: 0 10px 10px rgba(0,0,0,0.2);
}

.lista-texto {
  flex: 1;
  max-width: 900px;
  font-size: 1.1rem;
  color: #111;
  animation: slideInRight 1s ease forwards;
}
.lista-texto h3{
text-align: center;
}

.lista-texto ul {
  list-style: none;
  padding: 0;
}

.lista-texto li {
  margin-top: 10%;
  display:block;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.lista-texto .check {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}
  /* ultimas informacoes */
  .container-localizacao05 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 100%;
    margin: 0 auto;
    gap: 40px;
  }
  
  .localizacao-section05 {
    margin-left: 12%;
    background-color: white;
    padding: 40px;
    font-family: 'Poppins', sans-serif;
  }
   
  .texto-footer06 h2 {
    font-size: 2.0rem;
    color: #e6e6e6;
    margin-bottom: 20px;
  }
  
  .texto-footer06 span {
    font-weight: bold;
    font-size: 2.0rem;
  }
  .info-footer06 p {
    font-size: 1.0rem;
    line-height: 1.6;
    color: #f1f1f1;
  }
  

}

      /*telas menores*/
  @media (max-width: 768px) {

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      overflow-x: hidden;
  }
  html {
    overflow-x: hidden;
  }
  
  body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
  }
  @keyframes slideInRight {
    0% {
      transform: translateX(100%);
      opacity: 0;
    }
    80% {
      transform: translateX(-10%);
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes vibrate {
    0% { transform: translateX(0); }
    20% { transform: translateX(-2px); }
    40% { transform: translateX(2px); }
    60% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
    100% { transform: translateX(0); }
  }
  
  .chat-window11 {
    width: 300px;
    background: url('fundo de janela.png') no-repeat center center;
    background-size: cover;
    width: 100%;
    border-radius: 0px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    animation: slideInRight 0.6s ease-out, vibrate 0.4s ease-in 0.8s;
    display: none;
    z-index: 9999;
  }
  
  .chat-window11::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.95); /* fundo branco com transparência */
    z-index: 0;
  }
  
  .chat-body11,
  .chat-header11,
  .footer11 {
    position: relative;
    z-index: 1;
  }
  
  .chat-header11 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #27351f;
    color: #fff;
  }
  
  .profile-pic11 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .profile-pic11 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .header-text11 {
    flex: 1;
  }
  
  .name11 {
    font-weight: bold;
    font-size: 1rem;
  }
  
  .subtitle11 {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #c1ffce;
    margin-top: 2px;
  }
  
  .status-indicator11 {
    width: 10px;
    height: 10px;
    background-color: #00c853;
    border-radius: 50%;
    margin-right: 5px;
  }
  
  .close-btn11 {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
  }
  
  .chat-body11 {
    padding: 1rem;
  }
  
  .message11 {
    background-color: #f1f1f1;
    padding: 0.7rem;
    border-radius: 10px;
    margin-bottom: 1rem;
  }
  
  .message11 .name11 {
    color: #27351f;
    font-weight: bold;
    margin-bottom: 4px;
  }
  
  .conversation-btn11 {
    display: inline-block;
    background-color: #25D366;
    color: white;
    text-align: center;
    padding: 0.7rem 1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  .conversation-btn11:hover {
    background-color: #1ebc57;
  }
  
  .footer11 {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    color: #888;
    text-align: center;
    background-color: #f9f9f9;
  }
  
  /* Ícone do menu hambúrguer */
  .menu-icon {
    position: absolute;
    top: 60px;
    right: 10px;
    width: 40px;
    height: 50px;
    cursor: pointer;
    z-index: 1001;
  }
  
  .menu-icon div {
    width: 35px;
    height: 4px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
  }
  nav{
    display: none;
  }
  .chat-window{
    display: none;
  }
  .social-icons {
    position: fixed;
    right: 2px;
    bottom: 5px;
    z-index: 99999;
    display: flex;
    flex-direction: column; /* Faz os ícones ficarem em bloco (empilhados) */
    gap: 10px;
  }
  
  .social-icons a {
    background-color: rgba(255, 255, 255, 0);
    border-radius: 50%;
    padding: 8px;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.7s ease, background-color 0.3s ease;
  }
  .logo {
    display: block;
    margin: 0 auto;         
    padding-top: 5%;        
    height: 100px;          
    object-fit: contain;
   padding-bottom: 20px;
  }
    /* Hero */
  .hero-agendamento {
      background-image: url('celularketlin.png');
    }
    .conteudo {
      padding-top: 80%;
      position: relative;
      z-index: 1;
      max-width: 500px;
      margin: 0 auto; /* centraliza horizontalmente */
      animation: fadeInLeft 2s ease forwards;
      color: #4b4a4a;
    }
      /* Seção de serviços */
      .servicos {
        display: grid; /* aqui estava 'block', troque para grid */
        z-index: 1; /* não precisa ser alto aqui, só para empilhamento leve */
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        padding: 60px 40px;
        background: #e5e5e5;
        position: relative; /* necessário para empilhamento correto */
      }
      
      .card {
        margin-top: 0px;
        position: relative;
        z-index: 9999; 
        border-radius: 20px;
        padding: 30px;
        margin-bottom: 0px;
        text-align: center;
        transition: transform 0.3s ease;
        animation: slideUp 1s ease-out forwards;
      }
        /* imagem */
        .image-container {
          max-width: 600px; /* ou 600px, como preferir */
          margin: 0 auto;
        }
        
        .image-container img {
          width: 100%;
          max-width: 100%;
          padding-right: 0%;
          border-radius: 50%;
          opacity: 0;
          transform: translateY(-50px) scale(1);
          transition: all 0.3s ease-out;
        }
        
  .hero-psicologa {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    background-color: #e5e5e5; /* cor de fundo parecida da imagem */
    flex-wrap: wrap;
  }
  .text-content {
    max-width: 100%;
    padding: 10%;
    color: #111;
  }
  .text-content h1 {
    text-align: center;
    font-size: 35px;
    margin-bottom: 20px;
  }
  .text-content h2 {
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    margin: 20px 0 10px;
    text-shadow: 1px 1px #00000020;
  }
  
  .text-content p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 40px;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin: 15px auto 15%;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    transition: transform 0.7s ease, background-color 0.3s ease;
    display: block; /* Adicionado para margin: auto funcionar */
    width: fit-content;
  }
  
  /* planos */
  .linha-planos2 {
    display: block;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 10px 0 30px;
    overflow-x: none;
    scroll-snap-type: none;
    scrollbar-width: none;
    scrollbar-color: #ccc transparent;
  }
  .card2 {
    display: block;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-width: 0px;
    max-width: 100%;
    background-color: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    scroll-snap-align: start;
    flex-shrink: 0;
    height: 250px;
    text-align: left;
    animation: tremer 0.4s infinite ease-in-out;
  }
  .card2 {
    text-align: center;
    display: flex;
    margin-bottom: 20px;
    flex-direction: column;
    align-items: center; /* centraliza itens na vertical */
    justify-content: space-between;
  }
  
  .card2 h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .card2 p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: center; /* opcional, caso queira centralizar o texto também */
  }
  
  .btn-plano2 {
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
    text-align: center;
  }
  /* formulario */
  .dupla-section {
    background: linear-gradient(to bottom,  40%,  100%);
    padding: 4rem 2rem;
    clip-path: ellipse(200% 100% at 50% 0); /* curva no topo */
    color: #333;
  }
    
/* contato */
.cura-section {
  margin-top: 5%;
  background-color: white;
  padding: 2rem;
  text-align: center;
}

.cura-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: auto;
  gap: 2rem;
}

.cura-img img {
  max-width: 100%;
  max-height: 100%;
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 10px rgba(0,0,0,0.2);
  animation: slideInLeft 1s ease forwards;
}

.cura-texto {
  display: block;
  max-width: 100%;
  color: #000;
}

.cura-texto h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cura-texto p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cura-texto strong {
  font-weight: bold;
}

.cura-texto button {
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  letter-spacing: 4px;
  font-weight: bold;
  cursor: pointer;
}

/* contato2 */
.lista-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: auto;
  gap: 2rem;;
}

.lista-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: auto;
  gap: 2rem;
}

.lista-img img {
  max-width: 100%;
  max-height: 100%;
  width: 350px;
  height: auto;
  border-radius: 2rem;
  box-shadow: 0 10px 10px rgba(0,0,0,0.2);
}

.lista-texto {
  flex: 1;
  max-width: 900px;
  font-size: 1.1rem;
  color: #111;
  animation: slideInRight 1s ease forwards;
}

.lista-texto ul {
  list-style: none;
  padding: 0;
}

.lista-texto li {
  margin-top: 10%;
  display:block;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.0rem;
  line-height: 1.6;
}

.lista-texto .check {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}
  /* ultimas informacoes */
  .localizacao-section05 {
    margin-left: 0%;
    background-color: white;
    padding-left: 30px;
    padding-right: 30px;
    font-family: 'Poppins', sans-serif;
  }
   
  .texto-footer06 h2 {
    font-size: 2.0rem;
    color: #e6e6e6;
    margin-bottom: 20px;
  }
  
  .texto-footer06 span {
    font-weight: bold;
    font-size: 2.0rem;
  }
  .info-footer06 p {
    font-size: 1.0rem;
    line-height: 1.6;
    color: #f1f1f1;
  }
  .info-localizacao05 img{
    padding-left: 25%;
  }
  


}
  
  