/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme...
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

*/ Reset & Variáveis Globais */
:root {
    --gold: #D4AF37;
    --black: #000000;
    --white: #FFFFFF;
    --purple: #6A0DAD;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    background: var(--black);
    overflow-x: hidden;
}

/* Header */
.lya-header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.lya-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lya-nav a {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    transition: all 0.3s ease;
}

.lya-nav a:hover {
    color: var(--gold);
}

.lya-nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.lya-nav a:hover:after {
    width: 100%;
}

/* Hero Section */
.lya-hero {
    height: 100vh; /* Mantém a altura total da tela */
    width: 100vw; /* Força a largura total da tela */
    min-height: 100vh; /* Garante altura mínima */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('https://www.leadyourselfafrica.com/wp-content/uploads/2025/03/00fc7123-9d58-4575-b1e9-f805a7cb273d.jpeg') 
                no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza o conteúdo */
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    background: linear-gradient(to right, var(--gold), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
}

/* Subdomínios Section */
.lya-subdomains {
    padding: 100px 5%;
    background: var(--black);
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 80px;
    color: var(--gold);
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.domain-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.domain-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.domain-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--gold);
}

.domain-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.domain-desc {
    margin-bottom: 30px;
    opacity: 0.9;
}

.domain-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 5px;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .lya-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block !important;
        background: var(--gold);
        color: var(--black);
        padding: 10px;
        border: none;
    }
    .ast-container, .site-content, .lya-hero, .lya-subdomains {
       width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    padding: 0;
}
