@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Petit+Formal+Script&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Quicksand&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --marrom: #5a3c26;
    --laranja: #c25a00;
    --creme: #fdfaf7;
    --branco: #ffffff;
    --texto-claro: #826a57;
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Bebas Neue", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--creme);
    color: var(--marrom);
    line-height: 1.6;
}

/* Container Global */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Header --- */
.header {
    background-color: var(--branco);
    box-shadow: 0 2px 10px rgba(90, 60, 38, 0.08);
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 0.75rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--marrom);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--laranja);
    font-weight: 600;
    text-transform: uppercase;
}

.nav-desktop {
    display: none;
    gap: 2rem;
    font-weight: 500;
}

.nav-desktop a {
    text-decoration: none;
    color: var(--marrom);
    transition: color 0.2s ease;
}

.nav-desktop a:hover {
    color: var(--laranja);
}

.btn {
    display: inline-flex;        
    align-items: center;
    justify-content: center;
    gap: 0.5rem;                  
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;           
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}

.btn-laranja {
    background: linear-gradient(135deg, var(--laranja), #a34b00); 
    color: var(--branco);
    box-shadow: 0 4px 15px rgba(194, 90, 0, 0.3);
}

.btn-laranja:hover {
    transform: translateY(-2px); 
    background: linear-gradient(135deg, #d66500, #a34b00); 
    box-shadow: 0 6px 20px rgba(194, 90, 0, 0.5); 
}

/* Botão Secundário (Hero Section) */
.btn-marrom {
    background-color: var(--marrom);
    color: var(--branco);
    padding: 0.8rem 1.8rem;
    box-shadow: 0 4px 15px rgba(90, 60, 38, 0.2);
}

.btn-marrom:hover {
    background-color: #442d1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 60, 38, 0.35);
}

/* --- Hero Section --- */
.hero {
    padding: 3rem 0;
}

.hero-img{
    height: 400px;
    border-radius: 30px ;
}

.hero-container {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.badge {
    display: inline-block;
    background-color: rgba(194, 90, 0, 0.1);
    color: var(--laranja);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-title span {
    color: var(--laranja);
}

.hero-description {
    font-size: 1rem;
    color: var(--texto-claro);
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.hero-image-placeholder {
    background: linear-gradient(135deg, var(--marrom), #442d1c);
    border-radius: 12px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    text-align: center;
    box-shadow: 0 10px 30px rgba(90, 60, 38, 0.15);
}

.placeholder-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
}

/* --- Sobre Section --- */
.sobre {
    background-color: var(--branco);
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--texto-claro);
    font-size: 1rem;
}

.cards-grid {
    display: grid;
    gap: 1.5rem;
}

.card {
    background-color: var(--creme);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(90, 60, 38, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(90, 60, 38, 0.08);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--marrom);
    margin-bottom: 0.5rem;
}

.card p {
    font-size: 0.95rem;
    color: var(--texto-claro);
}

/* --- Footer --- */
.footer {
    background-color: var(--marrom);
    color: var(--creme);
    padding: 3rem 0 0 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h2, .footer-social h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--branco);
}

.info-item {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: rgba(253, 250, 247, 0.8);
}

.info-item strong {
    color: var(--branco);
}

.whatsapp-text {
    font-size: 0.8rem;
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--branco);
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.social-link:hover {
    border-color: var(--laranja);
    color: var(--laranja);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: rgba(253, 250, 247, 0.6);
    text-align: center;
}

svg{
    color: #a34b00;
}


/* --- Media Queries (Responsividade) --- */
@media (max-width: 767px) {
    .hidden-mobile {
        display: none;
    }

    .hero-img {
        width: 100%; 
        height: 300px; 
        object-fit: cover; 
    }

    .hero-text {
        text-align: center; 
    }

    .hero-title {
        font-size: 2rem; 
    }

    .hero-description {
        max-width: 100%; 
    }

    .btn {
        width: 100%; 
        margin-bottom: 0.5rem;
    }

    .card {
        text-align: center; 
    }

    .footer-grid {
        text-align: center; 
    }

    .info-item {
        justify-content: center; 
    }

    .social-links {
        justify-content: center; 
    }

    .header .btn {
        width: 80px; 
        padding: 0.5rem 1rem; 
        font-size: 0.9rem; 
    }

    .header .btn svg {
        width: 16px; 
        height: 16px;
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .hero {
        padding: 5rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr;
    }

    .footer-social {
        text-align: right;
    }

    .social-links {
        justify-content: flex-end;
    }
}