/* Layout Styles - Hero Section */
@import url("responsive.css");

/* Reset básico e Fontes */
body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    margin: 0;
    overflow-x: hidden;
    width: 100%;
}

.container-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: clamp(20px, 5vw, 8%);
    gap: clamp(16px, 4vw, 20px);
    flex-wrap: wrap;
}

/* Área do Logo Superior */
.logo-area {
    display: flex;
    align-items: center;
    gap: clamp(10px, 3vw, 15px);
    margin-bottom: clamp(20px, 5vw, 40px);
    flex-wrap: wrap;
    justify-content: center;
}

.logo-mini {
    width: clamp(40px, 12vw, 60px);
    border-radius: 12px;
}

.brand-name {
    color: #2400ff;
    font-size: clamp(1.5rem, 6vw, 32px);
    font-weight: bold;
    margin: 0;
}

/* Conteúdo de Texto */
.hero-content {
    flex: 1;
    max-width: min(600px, 100%);
    min-width: clamp(250px, 60vw, 600px);
    text-align: center;
}

.main-title {
    color: #1b03a2;
    font-size: clamp(1.75rem, 8vw, 58px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: clamp(16px, 4vw, 25px);
}

.description {
    font-size: clamp(1rem, 4vw, 24px);
    color: #333;
    line-height: 1.4;
    margin-bottom: clamp(12px, 3vw, 20px);
}

/* Botões Customizados */
.button-group {
    display: flex;
    gap: clamp(12px, 4vw, 20px);
    margin-top: clamp(20px, 5vw, 40px);
    flex-wrap: wrap;
    justify-content: center;
}

.btn-custom {
    padding: clamp(10px, 3vw, 15px) clamp(20px, 6vw, 45px);
    border-radius: clamp(10px, 3vw, 15px);
    text-decoration: none;
    font-size: clamp(1rem, 4vw, 24px);
    font-weight: 500;
    transition: transform 0.2s, filter 0.2s;
    display: inline-block;
}

.btn-custom:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    color: white;
}

.btn-primary-alt {
    background-color: #2400ff;
    color: white;
}

.btn-secondary-alt {
    background-color: #6900ff;
    color: white;
}

/* Imagem da Direita */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: clamp(200px, 60vw, 300px);
}

.hero-image img {
    width: 100%;
    max-width: min(550px, 95vw);
    height: auto;
}

/* Responsividade */
@media (max-width: 992px) {
    .container-hero {
        flex-direction: column;
        text-align: center;
        padding-top: clamp(30px, 10vw, 50px);
    }

    .logo-area {
        justify-content: center;
    }

    .button-group {
        justify-content: center;
        flex-wrap: wrap;
    }

    .main-title {
        font-size: clamp(1.5rem, 8vw, 40px);
    }
    
    .hero-content {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .container-hero {
        padding: 20px 12px;
    }
    
    .btn-custom {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .button-group {
        width: 100%;
    }
}
