/* css/home.css - Estilos específicos da página Home */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height); /* antes 120px */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.brand-name-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title span {
    font-weight: 600;
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Botão moderno e arredondado */
.cta-button {
    display: inline-block;
    padding: 16px 42px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    font-family: inherit;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--text-primary) 0%, #ffffff 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-button:hover {
    color: var(--primary-black);
    border-color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.cta-button:hover::after {
    opacity: 1;
}

/* Background específico da home */
.bg-left {
    background-image: url('../images/cubokok.gif');
}

/* Responsividade específica da home */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .brand-name-img {
        max-width: 250px;
        padding: 0 30px;
    }
    
    .cta-button {
        padding: 15px 38px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .brand-name-img {
        max-width: 250px;
        padding: 0 30px;
    }
    
    .hero {
        padding-top: var(--header-height);
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .cta-button {
        padding: 14px 35px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .brand-name-img {
        max-width: 200px;
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        padding: 0 20px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 0.9rem;
        border-width: 1.5px;
    }
}

@media (max-width: 360px) {
    .brand-name-img {
        max-width: 180px;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}