/* ============================================
   RESET
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

main {
    width: 100%;
}

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

/* ============================================
   HERO SECTION - IMAGEM PURA
   ============================================ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 40px;
    z-index: 10;
}

.hero-header {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    border-bottom: 3px solid #fff;
    padding-bottom: 10px;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    z-index: 101;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99;
    padding-top: 100px;
    flex-direction: column;
}

.mobile-menu.active {
    display: flex;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    padding: 5px 10px;
    z-index: 100;
}

.mobile-menu a {
    display: block;
    padding: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.mobile-menu a:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

/* ============================================
   EXPERIÊNCIAS - CARDS
   ============================================ */

.experiencias {
    padding: 60px 20px;
    background: #fff;
}

.exp-card {
    display: flex;
    align-items: center;
    gap: 0;
    background: #faf8f6;
    border: 2px solid #c4a882;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    transition: box-shadow 0.3s ease;
}

.exp-card:last-child {
    margin-bottom: 0;
}

.exp-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.exp-card-img {
    flex: 0 0 320px;
    max-width: 320px;
    overflow: hidden;
}

.exp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 300px;
}

.exp-card-content {
    flex: 1;
    padding: 40px;
}

.exp-card-content h3 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-size: 24px;
    font-weight: 400;
    color: #b8996f;
    margin-bottom: 20px;
    line-height: 1.3;
}

.exp-card-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}

/* ============================================
   SOBRE - FUNDO BEGE/MARROM
   ============================================ */

.sobre {
    padding: 60px 20px;
    background: #bfb1a2;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.sobre-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.sobre-text h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.sobre-text p {
    color: #333;
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 14px;
    text-align: justify;
    word-spacing: -1px;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.credentials {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

.credentials h3 {
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
}

.credentials p {
    color: #333;
    font-weight: 600;
    font-size: 13px;
    margin: 0;
}

/* ============================================
   BEM-VINDO
   ============================================ */

.bem-vindo {
    padding: 60px 20px;
    background: #f6f6f6;
}

.bem-vindo h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.bem-vindo p {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
}

/* ============================================
   DÚVIDAS - FAQ
   ============================================ */

.duvidas {
    padding: 60px 20px;
    background: #f6f6f6;
}

.duvidas h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

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

.faq-item {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-btn {
    width: 100%;
    padding: 20px;
    background: #fff;
    border: none;
    border-left: 4px solid #999;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-btn:hover {
    background: #f9f9f9;
}

.faq-icon {
    font-size: 24px;
    font-weight: bold;
    margin-left: 20px;
    flex-shrink: 0;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f8f8;
}

.faq-content.active {
    max-height: 500px;
}

.faq-content p {
    padding: 20px;
    color: #666;
    line-height: 1.8;
    font-size: 14px;
    margin: 0;
}

/* ============================================
   SERVIÇOS
   ============================================ */

.servicos {
    padding: 60px 20px;
    background: #fff;
}

.servicos h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
}

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

.servico {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.servico:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    background: #f6f6f6;
}

.servico h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 15px;
}

.servico p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   VALORES
   ============================================ */

.valores {
    padding: 60px 20px;
    background: #f6f6f6;
}

.valores h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
}

.valores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.valores-col h3 {
    color: #333;
    font-size: 16px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.valores-col h3:first-child {
    margin-top: 0;
}

.valores-list {
    list-style: none;
}

.valores-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    font-size: 13px;
}

.valores-list li:last-child {
    border-bottom: none;
}

.valores-list span:first-child {
    color: #333;
    font-weight: 500;
    flex: 1;
}

.preco {
    color: #333;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    margin-left: 20px;
}

.pagamento-list {
    list-style: none;
    margin-top: 10px;
}

.pagamento-list li {
    padding: 10px 0;
    color: #666;
    font-size: 13px;
    border-bottom: 1px solid #ddd;
}

.pagamento-list li:last-child {
    border-bottom: none;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: #333;
    padding: 20px 80px 20px 20px;
    text-align: center;
}

.site-footer p {
    color: #999;
    font-size: 12px;
    margin: 0;
}

.site-footer strong {
    color: #bbb;
}

.site-footer a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #fff;
}

/* ============================================
   WHATSAPP FLUTUANTE
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .hero-header h1 {
        font-size: 24px;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .valores-grid {
        grid-template-columns: 1fr;
    }

    .exp-card,
    .exp-card-reverse {
        flex-direction: column;
        margin-bottom: 25px;
    }

    .exp-card-reverse .exp-card-img {
        order: -1;
    }

    .exp-card-img {
        flex: 0 0 auto;
        max-width: 100%;
        max-height: 280px;
        overflow: hidden;
    }

    .exp-card-img img {
        min-height: auto;
        max-height: 280px;
        object-fit: cover;
        object-position: top;
    }

    .exp-card-content {
        padding: 20px;
    }

    .exp-card-content h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .exp-card-content p {
        text-align: justify;
        font-size: 13px;
        line-height: 1.6;
        word-spacing: -1px;
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    h2 {
        font-size: 24px !important;
    }

    .experiencias,
    .sobre,
    .bem-vindo,
    .duvidas,
    .servicos,
    .valores {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .hero-header h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 20px !important;
    }

    .card h3,
    .servico h4 {
        font-size: 14px;
    }

    .card p,
    .servico p {
        font-size: 12px;
    }

    .faq-btn {
        padding: 15px;
        font-size: 13px;
    }

    .valores-list li {
        flex-direction: column;
        gap: 5px;
    }

    .preco {
        margin-left: 0;
    }
}
