/* =========================================
   HERO
   ARTHUR ESSÊNCIA
   ========================================= */

.hero {
    width: 100%;

    background-color: #F8F5EF;
}

/* =========================================
   CONTAINER DO HERO
   ========================================= */

.hero-container {
    max-width: 1200px;

    min-height: 600px;

    margin: 0 auto;

    padding: 80px 30px;

    display: flex;

    align-items: center;

    gap: 60px;
}

/* =========================================
   CONTEÚDO DO HERO
   ========================================= */

.hero-content {
    flex: 1;

    max-width: 600px;
}

/* =========================================
   SUBTÍTULO DO HERO
   ========================================= */

.hero-subtitle {
    margin: 0 0 15px;

    color: #B88A3B;

    font-family: Arial, sans-serif;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

/* =========================================
   TÍTULO PRINCIPAL DO HERO
   ========================================= */

.hero h1 {
    margin: 0 0 25px;

    color: #3E3325;

    font-family: Georgia, serif;

    font-size: 64px;
    font-weight: 500;

    line-height: 1.1;
}

/* =========================================
   DESCRIÇÃO DO HERO
   ========================================= */

.hero-description {
    max-width: 520px;

    margin: 0 0 30px;

    color: #6F675C;

    font-family: Arial, sans-serif;

    font-size: 18px;

    line-height: 1.7;
}

/* =========================================
   BOTÃO DO HERO
   ========================================= */

.hero-button {
    display: inline-block;

    padding: 14px 30px;

    background-color: #B88A3B;

    color: #FFFFFF;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 14px;
    font-weight: 600;

    border-radius: 4px;

    transition: 
        background-color 0.3s ease,
        transform 0.3s ease;
}

.hero-button:hover {
    background-color: #8C6425;

    transform: translateY(-2px);
}

/* =========================================
   ÁREA VISUAL DO HERO
   ========================================= */

.hero-visual {
    flex: 1;

    display: flex;

    align-items: center;

    justify-content: center;
}

/* =========================================
   CÍRCULO DA LOGO
   ========================================= */

.hero-logo-circle {
    width: 380px;
    height: 380px;

    border-radius: 50%;

    border: 1px solid #D6B36A;

    padding: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: #EDE6D9;

    box-sizing: border-box;

    box-shadow: 0 20px 50px rgba(62, 51, 37, 0.12);
}

.hero-logo-circle img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    display: block;
}

/* =========================================
   RESPONSIVIDADE DO HERO
   ========================================= */

@media (max-width: 768px) {

    .hero-container {
        min-height: auto;

        padding: 60px 20px;

        flex-direction: column;

        text-align: center;

        gap: 50px;
    }


    .hero-content {
        max-width: 100%;
    }


    .hero-subtitle {
        font-size: 11px;

        letter-spacing: 2px;
    }


    .hero h1 {
        font-size: 42px;
    }


    .hero-description {
        max-width: 100%;

        font-size: 16px;
    }


    .hero-visual {
        width: 100%;
    }


    .hero-logo-circle {
        width: 280px;
        height: 280px;
    }

}