@import url("https://use.typekit.net/ysw0oin.css");

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "area-normal", 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 40px;
}

h2.section-title {
    background: url('/assets/images/comma.svg') no-repeat center left;
    background-size: auto 18px;
    background-position: 0 5px;
    padding-left: 20px;
    letter-spacing: 2px;
    color: #37302A;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 100;
    text-align: left;
}
h2.section-title-white {
    background: url('/assets/images/comma-white.svg') no-repeat center left;
    padding-left: 20px;
    color: #FFFFFF;
    font-size: 19px;
    text-transform: uppercase;
    font-weight: 100;
}
.section-subtitle {
    color: #7D5930;
    font-weight: 800;
    font-size: 27px;
    letter-spacing: 5px;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 19px; }

p {
    margin-bottom: 1rem;
    color: #A89B8C;
}

.separator2 {
    background: url('/assets/images/separator.svg');
    width: 100%;
    height: 250px;
    margin: 100px 0;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 19px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #c8a882;
    color: white;
}

.btn-primary:hover {
    background: #b8986f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #c8a882;
    border: 2px solid #c8a882;
}

.btn-secondary:hover {
    background: #c8a882;
    color: white;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Seções Gerais */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #A89B8C;
    max-width: 600px;
    margin: 0 auto;
}

/* Utilitários */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Classes de visibilidade por dispositivo */
.desktop_only {
    display: block;
}

.mobile_only {
    display: none !important;
}

/* Responsividade Global */
@media (max-width: 768px) {
    /* Classes de visibilidade por dispositivo - Mobile */
    .desktop_only {
        display: none !important;
    }
    
    .mobile_only {
        display: block !important;
    }

    .nav-brand {
        /* margin: auto; */
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }

    .section-subtitle {
        color: #7D5930;
        font-weight: 300;
        font-size: 19px;
        letter-spacing: 4px;
    }

    h2.section-title {
        margin-top: 40px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }

    .separator2 {
        background: url('/assets/images/separator.svg');
        background-size: auto 160px;
        width: 100%;
        height: 80px;
        margin: 00px 0;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    section {
        padding: 40px 0;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}