@import url("hamburgerMenu.css");

/* --- VARIÁVEIS DE COR E RESET --- */
:root {
    /* Novo Verde Vívido/Saúde */
    --primary-green: #10b981;
    /* Verde Esmeralda Vibrante */
    --dark-green: #047857;
    /* Verde Escuro para contrastes */
    --light-green: #ecfdf5;
    /* Fundo menta muito suave */

    --accent-orange: #f97316;
    /* Laranja vibrante para call-to-action */

    --text-dark: #1f2937;
    /* Cinza chumbo (mais elegante que preto puro) */
    --text-gray: #4b5563;
    --white: #ffffff;
    --black: #111827;
    --font-main: 'Montserrat', sans-serif;
    --cor-fundo-claro: #f3f4f6;
}

a {
    color: inherit;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fafafa;
    cursor: context-menu;
}

/* --- UTILITÁRIOS --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

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

h2 {
    text-align: center;
    color: var(--dark-green);
    /* Títulos em verde escuro */
    font-size: 2.2rem;
    margin-bottom: 40px;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* BOTÕES */
.btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-hero {
    background-color: var(--accent-orange);
    color: var(--white);
}

.btn-hero:hover {
    background-color: #ea580c;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-green);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-outline {
    background-color: var(--dark-green);
    color: var(--white);
}

/* --- HEADER --- */
header {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Container Nav */
nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    padding: 6px;
}

.nav_item a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    font-weight: 600;
}

.nav_item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s;
}

.nav_item a:hover::after {
    width: 100%;
}

.nav_item a:hover {
    color: var(--primary-green);
    font-weight: 800;
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(135deg, var(--light-green) 0%, #ffffff 100%);
    padding: 80px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: var(--text-gray);
}

.hero-image {
    flex: 1;
    position: relative;
}

.small-text {
    font-size: 0.9rem;
    margin-top: 15px;
    color: var(--primary-green);
    font-weight: 600;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px 0 30px 0;
    box-shadow: 20px 20px 0px var(--primary-green);
    transition: all 0.4s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
    box-shadow: 10px 10px 0px var(--dark-green);
}

/* --- PAIN POINTS --- */
.pain-points {
    padding: 80px 0;
    background: var(--white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card-pain {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    transition: transform 0.6s ease-in-out;
    border: 1px solid #eee;
}

.card-pain:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--light-green);
}

.card-pain .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

/* --- METODOLOGIA --- */
.methodology {
    padding: 100px 0;
    background-color: var(--primary-green);
    text-align: center;
    color: var(--light-green);
}

.method-content {
    max-width: 800px;
    margin: 0 auto;
}

.methodology h2 {
    color: var(--text-dark);
}

.method-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.check-list {
    list-style: none;
    text-align: left;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    transition: transform 0.6s ease-in-out;
}

.check-list:hover {
    transform: scale(1.05);
}

.check-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
}

.check-list li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: 900;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* --- SERVIÇOS --- */
.services {
    padding: 100px 0;
    background: var(--light-green);
}

.card-service {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid transparent;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border-color: var(--primary-green);
}

.card-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
    border-color: var(--primary-green);
}

.card-service h3 {
    color: var(--dark-green);
    font-size: 1.4rem;
}

.card-service.featured {
    background: var(--white);
    border: 2px solid var(--primary-green);
    position: relative;
    transform: scale(1.05);
}

.card-service.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.tag {
    background: var(--accent-orange);
    color: white;
    padding: 8px 20px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.4);
}

.card-service ul {
    list-style: none;
    margin: 25px 0;
    color: var(--text-gray);
    text-align: left;
}

.card-service ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.card-service ul li::before {
    content: '•';
    color: var(--primary-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.card-service hr {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 20px 0;
}

/* --- DEPOIMENTOS --- */
.testimonials {
    background: var(--primary-green);
    padding: 50px 0px 100px 0px;
    color: var(--white);
    text-align: center;
    border-radius: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials h1 {
    color: var(--text-dark);
    font-size: 3rem;

}

.list {
    width: 80%;
    height: auto;
    min-height: 450px;
    margin: 0 auto;
    position: relative;
}

.item {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    opacity: 0;

    /* Animação */
    transform: translateX(110%);
    transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
}

.item.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.active {
    opacity: 1;
    transform: translateX(0);
}

.depoimentos-container {
    width: 65%;
    height: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    border-radius: 12px;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.274));
    background-color: #ecfdf5d7;
    transition: transform 0.3s ease-in-out;
}

.depoimentos-container:hover {
    transform: scale(1.05);
}

.depoimentos-text {
    color: var(--black);
    font-weight: 500;
    padding: 10px;
    text-align: left;
    width: 100%;
    max-width: 90%;
    height: auto;
}

.depoimentos-text:nth-child(1) {
    margin-top: 30px;
}

.depoimentos-container h2 {
    color: var(--black);
    padding-top: 20px;

}

.arrows {
    position: absolute;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
}

.arrow-btn {
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--black);
    border: 1px solid var(--black);
}

.arrow-btn:hover {
    background-color: #111827bd;
    border: 1px solid var(--black);
}

.arrow-btn.left,
.arrow-btn.right {
    margin: 0;
}



.indicators {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 5;
}

.numbers {
    font-size: 3rem;
    font-weight: 800;
    color: var(--black);
}

.dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 40px;
    height: 4px;
    background-color: var(--black);
    border-radius: 2px;

}

.dot.active {
    background-color: #00ff0d;
    box-shadow: 0 0 10px rgba(0, 255, 106, 0.3);
}

.fa-user {
    border: 2px solid var(--black);
    border-radius: 55%;
    padding: 7px;
    color: white;
    background-color: var(--black);
    box-shadow: 0 0 10px var(--primary-green);
}

/* --- SOBRE MIM --- */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-img img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px var(--primary-green);
    transition: transform 0.6s ease-in-out;
}

.about-img img:hover {
    transform: scale(1.05);
}

/* --- FAQ --- */
.faq {
    padding: 80px 0;
    background: var(--light-green);
}

details {
    background: #1f2937;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 3px solid black;
}

details[open] {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

summary {
    font-weight: 600;
    color: var(--dark-green);
    font-size: 1.1rem;
}

summary::after {
    color: var(--primary-green);
}

details p {
    color: var(--light-green);
    line-height: 1.7;
}

/* --- FOOTER --- */
footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 40px;
    text-align: center;
}

footer h2 {
    color: var(--white);
    margin-bottom: 40px;
}

.btn-large {
    font-size: 1.1rem;
    padding: 18px 50px;
}

.social-links {
    margin-top: 40px;
    color: #9ca3af;
}

.social-links a {
    color: var(--primary-green);
    font-weight: 600;
}

/* SEÇÃO LOCALIZAÇÃO */
#localizacao {
    padding: 100px 0;
    background: var(--primary-green);
    border-top: 1px solid #eee;
}

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

.section-title {
    text-align: center;
    color: var(--text-dark);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Coluna Esquerda: Lista de Endereços */
.endereco-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.endereco-card {
    background: var(--light-green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.21);
    padding: 25px;
    border-radius: 15px;
    border: 2.5px solid var(--text-dark);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.endereco-card:hover {
    border-color: var(--primary-green);
    transform: translateX(5px);
    background: #d1fae5;
    border: 2.5px solid var(--text-dark);
    transition: all 0.3s ease-in-out;
}

.endereco-card.destaque-domicilio:hover {
    border: 2px dashed var(--text-dark);
}

.endereco-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.endereco-icon i {
    font-size: 1.2rem;
    color: var(--primary-green);
}

.endereco-details h4 {
    color: var(--dark-green);
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.endereco-details p {
    color: var(--text-gray);
    margin-bottom: 5px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.endereco-meta span {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
}

.endereco-meta a {
    cursor: pointer !important;
}

/* Destaque para Atendimento Domiciliar */
.destaque-domicilio {
    background: var(--white);
    border: 2px dashed var(--text-dark);
}

/* Coluna Direita: Destaques e Botões */
.mapa-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.destaques-localizacao {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.destaque-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--white);
    border-radius: 10px;
    border: 2.5px solid var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.destaque-item:hover {
    border-color: var(--primary-green);
    border: 2.5px solid var(--text-dark);
    transform: translateX(5px);
}

.destaque-item i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.destaque-item span {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.mapa-actions {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.btn-default.outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--white);
    color: var(--dark-green);
    border: 2px solid var(--dark-green);
    border-radius: 50px;
    padding: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-default.outline:hover {
    background: var(--dark-green);
    color: var(--white);
    transform: translateY(-2px);
    border: 2.5px solid var(--text-dark);
}

/* Responsividade Localização */
@media (max-width: 768px) {}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {

    header.header-container {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
    }

    .depoimentos-container:hover,
    .card-pain:hover,
    .check-list:hover {
        transform: none;
    }

    /* Oculta menu desktop */

    .hero-content,
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-image {
        order: -1;
        /* Imagem acima do texto no mobile */
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .about-img img {
        width: 200px;
        height: 200px;
    }

    .card-service.featured {
        transform: none;
        /* Remove zoom no mobile para não quebrar layout */
    }

    .depoimentos img {
        height: 100%;
        width: 96vw;
    }

    /* Localização */
    .localizacao-content {
        grid-template-columns: 1fr;
    }

    .endereco-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .destaques-localizacao {
        grid-template-columns: 1fr;
    }
}