@import url('style.css?v=1.0.4');

/* ==========================================================================
   LANDING PAGE STYLES
   ========================================================================== */

.landing-body {
    padding: 0 !important;
    margin: 0 !important;
    background-color: var(--bg) !important;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.landing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.landing-header h1 {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    margin: 0;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.header-logo {
    height: 1.2em;
    width: auto;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.btn-acessar {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: var(--white) !important;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-acessar:hover {
    background: var(--primary);
    transform: scale(1.05);
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    max-width: 500px;
    animation: slideUp 0.6s ease;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: none;
}

.hero-content p {
    font-family: 'Zilla Slab', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: fadeIn 1s ease;
}

.hero-image img {
    max-width: 100%;
    border-radius: 2rem;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.features-section {
    background: var(--white);
    padding: 5rem 3rem;
    border-top-left-radius: 4rem;
    border-top-right-radius: 4rem;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
}

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

.features-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.landing-footer {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 2.5rem;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    opacity: 0.9;
    margin-top: auto;
}

.name-section {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.name-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.name-container::before {
    content: 'VERO';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 10rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.03;
    pointer-events: none;
}

.name-info h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.name-info .highlight {
    color: var(--accent);
}

.intro-text {
    font-size: 1.2rem;
    color: var(--dark);
    opacity: 0.7;
    margin-bottom: 3rem;
}

.meaning-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.meaning-item h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.meaning-item h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.3em;
    width: 4px;
    height: 0.8em;
    background: var(--accent);
    border-radius: 2px;
}

.meaning-item p {
    line-height: 1.6;
    color: var(--dark);
    opacity: 0.85;
}

.name-footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 2rem;
    text-align: center;
}

.name-footer p {
    font-family: 'Zilla Slab', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--primary);
}

/* Security Section */
.security-section {
    padding: 6rem 3rem;
    background: var(--dark);
    color: var(--white);
}

.security-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.security-header h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.security-header p {
    font-family: 'Zilla Slab', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.7;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.security-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.security-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.security-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.security-item h3 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.security-item p {
    color: var(--white);
    opacity: 0.8;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .security-section {
        padding: 4rem 1.5rem;
    }
    
    .security-header h2 {
        font-size: 2rem;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .meaning-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .name-container {
        padding: 2.5rem 1.5rem;
    }
    
    .name-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        padding: 3rem 1.5rem;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h2 {
        font-size: 2.8rem;
    }

    .landing-header {
        padding: 1rem 1.5rem;
        flex-direction: row;
    }

    .landing-header h1 {
        font-size: 1.5rem;
    }

    .header-logo {
        height: 1em;
    }

    .hero-image img {
        transform: none;
    }
}

@media (max-width: 480px) {
    .landing-header {
        flex-direction: row;
        gap: 0.5rem;
    }

    .landing-header h1 {
        font-size: 1.3rem;
    }

    .header-logo {
        height: 0.9em;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }
}
