/*
Theme Name: BOREAL LED Display
Theme URI: https://borealdisplay.com
Author: BOREAL Team
Author URI: https://borealdisplay.com
Description: Tema WordPress premium para BOREAL LED Display Systems
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: boreal
*/

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #030508;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Navigation */
.boreal-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s ease;
}

.boreal-nav.scrolled {
    background: rgba(3, 5, 8, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.boreal-nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.boreal-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.boreal-nav-links {
    display: none;
}

@media (min-width: 768px) {
    .boreal-nav-links {
        display: flex;
        align-items: center;
        gap: 40px;
    }
}

.boreal-nav-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.boreal-nav-links a:hover {
    color: #ffffff;
}

/* Navigation Right Section */
.boreal-nav-right {
    display: none;
    align-items: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .boreal-nav-right {
        display: flex;
    }
}

/* Language Selector */
.boreal-lang-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    padding: 4px;
}

.boreal-lang-btn {
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.boreal-lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.boreal-lang-btn.active {
    background: rgba(255, 255, 255, 0.2);
}

.boreal-flag {
    font-size: 18px;
    line-height: 1;
}

/* Mobile Language Selector */
.boreal-mobile-lang {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 16px;
}

.boreal-lang-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
}

.boreal-mobile-lang-buttons {
    display: flex;
    gap: 12px;
}

.boreal-mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 9999px;
    border: none;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.boreal-mobile-lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.boreal-mobile-lang-btn.active {
    background: rgba(255, 255, 255, 0.2);
}

.boreal-cta-btn {
    display: none;
    background: linear-gradient(90deg, #10b981, #06b6d4);
    color: #ffffff;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .boreal-cta-btn {
        display: inline-block;
    }
}

.boreal-cta-btn:hover {
    background: linear-gradient(90deg, #34d399, #22d3ee);
}

/* Hero Section */
.boreal-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.boreal-hero-bg {
    position: absolute;
    inset: 0;
}

.boreal-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.boreal-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #030508, rgba(3, 5, 8, 0.6), #030508);
}

.boreal-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1152px;
    margin: 0 auto;
    padding: 96px 24px 0;
    text-align: center;
}

.boreal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    margin-bottom: 40px;
}

.boreal-badge span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.boreal-hero h1 {
    font-size: clamp(3.75rem, 10vw, 9rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 0.9;
}

.boreal-hero h1 span {
    background: linear-gradient(90deg, #34d399, #22d3ee, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.boreal-hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.5);
    max-width: 640px;
    margin: 0 auto 48px;
}

.boreal-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 640px) {
    .boreal-hero-buttons {
        flex-direction: row;
    }
}

.boreal-btn-primary {
    background: linear-gradient(90deg, #10b981, #06b6d4);
    color: #ffffff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.boreal-btn-primary:hover {
    background: linear-gradient(90deg, #34d399, #22d3ee);
}

.boreal-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.boreal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.boreal-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 96px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .boreal-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.boreal-stat {
    text-align: left;
}

.boreal-stat-value {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
}

.boreal-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

/* Section Styles */
.boreal-section {
    padding: 128px 24px;
}

.boreal-section-alt {
    background: #050a10;
}

.boreal-section-header {
    max-width: 1280px;
    margin: 0 auto 80px;
}

.boreal-section-label {
    color: #34d399;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.boreal-section h2 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    color: #ffffff;
    margin-top: 16px;
}

.boreal-section h2 span {
    background: linear-gradient(90deg, #34d399, #22d3ee, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Products Grid */
.boreal-products-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 32px;
}

@media (min-width: 1024px) {
    .boreal-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.boreal-product-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.7s ease;
}

.boreal-product-card:hover {
    border-color: rgba(52, 211, 153, 0.3);
}

.boreal-product-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.boreal-product-card:hover img {
    transform: scale(1.05);
}

.boreal-product-content {
    padding: 40px;
}

.boreal-product-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.boreal-product-badge-icon {
    width: 40px;
    height: 40px;
    background: rgba(52, 211, 153, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boreal-product-badge span {
    color: #34d399;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.boreal-product-card h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.boreal-product-card p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    line-height: 1.6;
}

.boreal-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.boreal-spec {
    background: rgba(255, 255, 255, 0.03);
    padding: 16px;
    border-radius: 16px;
}

.boreal-spec-value {
    color: #ffffff;
    font-weight: 600;
}

.boreal-spec-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.boreal-btn-outline {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 9999px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.boreal-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Technology Section */
.boreal-tech-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 80px;
    align-items: center;
}

@media (min-width: 1024px) {
    .boreal-tech-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.boreal-tech-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.125rem;
    margin-bottom: 48px;
    line-height: 1.6;
}

.boreal-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.boreal-feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.boreal-feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.boreal-feature p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 1rem;
}

.boreal-tech-image {
    position: relative;
}

.boreal-tech-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 24px;
}

/* Applications Grid */
.boreal-apps-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .boreal-apps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.boreal-app-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 3/4;
}

.boreal-app-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.boreal-app-card:hover img {
    transform: scale(1.05);
}

.boreal-app-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000000, rgba(0, 0, 0, 0.4), transparent);
}

.boreal-app-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
}

.boreal-app-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.boreal-app-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Contact Section */
.boreal-contact-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 80px;
}

@media (min-width: 1024px) {
    .boreal-contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.boreal-contact-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.125rem;
    margin-bottom: 48px;
    line-height: 1.6;
}

.boreal-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.boreal-contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34d399;
}

.boreal-contact-item span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.boreal-contact-item strong {
    color: #ffffff;
    font-weight: 500;
    display: block;
}

.boreal-social-links {
    display: flex;
    gap: 16px;
    margin-top: 48px;
}

.boreal-social-links a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.boreal-social-links a:hover {
    background: rgba(52, 211, 153, 0.2);
}

.boreal-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
}

.boreal-form-group {
    margin-bottom: 24px;
}

.boreal-form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 8px;
}

.boreal-form-group input,
.boreal-form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.boreal-form-group input::placeholder,
.boreal-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.boreal-form-group input:focus,
.boreal-form-group textarea:focus {
    outline: none;
    border-color: rgba(52, 211, 153, 0.5);
}

.boreal-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.boreal-form-row {
    display: grid;
    gap: 24px;
}

@media (min-width: 640px) {
    .boreal-form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.boreal-form-submit {
    width: 100%;
    background: linear-gradient(90deg, #10b981, #06b6d4);
    color: #ffffff;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.boreal-form-submit:hover {
    background: linear-gradient(90deg, #34d399, #22d3ee);
}

/* Footer */
.boreal-footer {
    background: #020408;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 64px 24px;
}

.boreal-footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .boreal-footer-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.boreal-footer-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.boreal-footer-copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.boreal-footer-links {
    display: flex;
    gap: 32px;
}

.boreal-footer-links a {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.boreal-footer-links a:hover {
    color: #ffffff;
}

/* Mobile Menu */
.boreal-mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
}

@media (min-width: 768px) {
    .boreal-mobile-menu-btn {
        display: none;
    }
}

.boreal-mobile-menu {
    display: none;
    background: rgba(3, 5, 8, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 32px 24px;
}

.boreal-mobile-menu.active {
    display: block;
}

.boreal-mobile-menu a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    padding: 12px 0;
    text-decoration: none;
}

.boreal-mobile-menu a:hover {
    color: #ffffff;
}

.boreal-mobile-menu .boreal-cta-btn {
    display: block;
    margin-top: 24px;
    text-align: center;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.max-w-xl {
    max-width: 576px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-6 {
    margin-bottom: 24px;
}

.mb-20 {
    margin-bottom: 80px;
}

.flex {
    display: flex;
}

.items-end {
    align-items: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.gap-8 {
    gap: 32px;
}

@media (min-width: 1024px) {
    .lg-flex-row {
        flex-direction: row;
    }
}
