/*
Theme Name: Norisk Capacetes
Theme URI: https://norisk.com.br
Author: Norisk
Author URI: https://norisk.com.br
Description: Tema oficial para o site de capacetes Norisk - Design moderno e responsivo
Version: 2.0.0
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: norisk
*/

/* ==========================================================================
   CSS Reset & Base
   ========================================================================== */

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

:root {
    /* Colors - Dark Theme with Lime Accent */
    --background: hsl(0, 0%, 0%);
    --foreground: hsl(0, 0%, 100%);
    
    --card: hsl(0, 0%, 10%);
    --card-foreground: hsl(0, 0%, 100%);
    
    --primary: hsl(72, 100%, 50%);
    --primary-foreground: hsl(0, 0%, 0%);
    
    --secondary: hsl(0, 0%, 10%);
    --secondary-foreground: hsl(0, 0%, 100%);
    
    --muted: hsl(0, 0%, 15%);
    --muted-foreground: hsl(0, 0%, 90%);
    
    --accent: hsl(72, 100%, 50%);
    --accent-foreground: hsl(0, 0%, 0%);
    
    --border: hsl(0, 0%, 20%);
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsla(72, 100%, 50%, 0.1) 0%, hsl(0, 0%, 0%) 50%);
    --gradient-card: linear-gradient(180deg, hsl(0, 0%, 12%) 0%, hsl(0, 0%, 8%) 100%);
    --gradient-accent: linear-gradient(135deg, hsl(72, 100%, 50%) 0%, hsl(80, 100%, 40%) 100%);
    
    /* Shadows */
    --shadow-glow: 0 0 60px hsla(72, 100%, 50%, 0.3);
    --shadow-card: 0 8px 32px hsla(0, 0%, 0%, 0.6);
    --shadow-card-hover: 0 16px 48px hsla(0, 0%, 0%, 0.8);
    
    /* Spacing */
    --radius: 0.75rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-gradient {
    background: var(--gradient-card);
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px hsla(72, 100%, 50%, 0.4);
    }
    50% {
        box-shadow: 0 0 40px hsla(72, 100%, 50%, 0.6);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 3rem 1rem;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: hsla(72, 100%, 50%, 0.1);
    border: 1px solid hsla(72, 100%, 50%, 0.3);
    border-radius: 9999px;
    margin-bottom: 2rem;
}

.hero-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-badge-text {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
}

.hero-title {
    font-size: 2.25rem;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 28rem;
    margin: 2.5rem auto 0;
}

.hero-stat {
    text-align: center;
}

.hero-stat:nth-child(2) {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.hero-stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
}

@media (min-width: 768px) {
    .hero-stat-value {
        font-size: 3rem;
    }
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

.hero-supporting-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 2rem auto 0;
}

@media (min-width: 768px) {
    .hero-supporting-text {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero {
    background: var(--primary);
    color: var(--primary-foreground);
    animation: pulseGlow 2s ease-in-out infinite;
}

.btn-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px hsla(72, 100%, 50%, 0.6);
}

.btn-model {
    width: 100%;
    min-height: 80px;
    padding: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--foreground);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.btn-model:hover {
    background: hsla(72, 100%, 50%, 0.1);
    border-color: hsla(72, 100%, 50%, 0.5);
}

.btn-model-title {
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: normal;
    line-height: 1.4;
}

.btn-model-action {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-family: 'Inter', sans-serif;
    letter-spacing: normal;
    transition: color 0.3s ease;
}

.btn-model:hover .btn-model-action {
    color: var(--primary);
}

.btn-model-action svg {
    width: 0.75rem;
    height: 0.75rem;
    transition: transform 0.3s ease;
}

.btn-model:hover .btn-model-action svg {
    transform: translateX(4px);
}

/* ==========================================================================
   Gender Section
   ========================================================================== */

.gender-section {
    padding: 2rem 0;
    background: var(--background);
}

@media (min-width: 768px) {
    .gender-section {
        padding: 2.5rem 0;
    }
}

.gender-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .gender-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.gender-card {
    display: block;
    background: var(--secondary);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .gender-card {
        padding: 2rem;
    }
}

.gender-card:hover {
    border-color: hsla(72, 100%, 50%, 0.5);
}

.gender-card:hover .gender-card-title {
    color: var(--primary);
}

.gender-card-title {
    font-size: 1.5rem;
    color: var(--foreground);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .gender-card-title {
        font-size: 1.875rem;
    }
}

.gender-card-description {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.gender-card-highlights {
    list-style: none;
    margin-bottom: 2rem;
}

.gender-card-highlight {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.gender-card-highlight svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.gender-card-highlight span {
    color: hsla(0, 0%, 100%, 0.9);
}

.btn-gender {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.gender-card:hover .btn-gender {
    background: hsla(72, 100%, 50%, 0.9);
}

.btn-gender svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.gender-card:hover .btn-gender svg {
    transform: translateX(4px);
}

/* ==========================================================================
   Models Section
   ========================================================================== */

.models-section {
    padding: 3rem 0;
    background: var(--background);
}

@media (min-width: 768px) {
    .models-section {
        padding: 4rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.25rem;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.75rem;
    }
}

.section-description {
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

/* ==========================================================================
   Product Card
   ========================================================================== */

.product-card {
    background: var(--gradient-card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    padding: 1.5rem;
    transition: all 0.5s ease;
    display: block;
    cursor: pointer;
}

.product-card:hover {
    border-color: hsla(72, 100%, 50%, 0.5);
    box-shadow: var(--shadow-card-hover);
}

.product-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 1.5rem;
    color: var(--foreground);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .product-title {
        font-size: 1.875rem;
    }
}

.product-card:hover .product-title {
    color: var(--primary);
}

.product-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.product-feature svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.product-feature span {
    color: var(--foreground);
}

.product-button {
    width: 100%;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--foreground);
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-button {
    background: hsla(72, 100%, 50%, 0.1);
    border-color: hsla(72, 100%, 50%, 0.5);
}

.product-button svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.product-card:hover .product-button svg {
    transform: translateX(0.25rem);
}

/* ==========================================================================
   Other Models Section
   ========================================================================== */

.other-models-section {
    padding: 3rem 0;
    background: hsla(0, 0%, 10%, 0.3);
}

@media (min-width: 768px) {
    .other-models-section {
        padding: 4rem 0;
    }
}

.other-models-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 64rem;
    margin: 0 auto;
}

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

@media (min-width: 1024px) {
    .other-models-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    padding: 2rem 0;
    background: var(--card);
    border-top: 1px solid var(--border);
}

.footer-transparency {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: hsla(0, 0%, 50%, 0.1);
    border-radius: 0.5rem;
    border: 1px solid var(--border);
}

.footer-transparency p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--foreground);
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
}

/* ==========================================================================
   Icons (SVG Inline)
   ========================================================================== */

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

/* ==========================================================================
   Page Header (Institutional Pages)
   ========================================================================== */

.page-header {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.page-header-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-header-logo:hover {
    color: var(--primary);
}

/* ==========================================================================
   Institutional Pages
   ========================================================================== */

.page-section {
    padding: 3rem 0 4rem;
}

@media (min-width: 768px) {
    .page-section {
        padding: 4rem 0 5rem;
    }
}

.page-container {
    max-width: 56rem;
}

.page-title {
    font-size: 2.25rem;
    color: var(--foreground);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .page-title {
        font-size: 3.75rem;
    }
}

.page-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Highlight Box - Primary accent */
.highlight-box {
    background: hsla(72, 100%, 50%, 0.1);
    border: 1px solid hsla(72, 100%, 50%, 0.3);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.highlight-box p {
    color: var(--muted-foreground);
    line-height: 1.7;
    font-size: 1.125rem;
    margin: 0;
}

.highlight-box .card-icon {
    color: var(--primary);
    margin-bottom: 1rem;
}

.highlight-box .card-content h2 {
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

/* Content Card */
.content-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
}

.card-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.card-icon svg {
    width: 2rem;
    height: 2rem;
}

.card-content {
    flex: 1;
}

.card-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--foreground);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.card-content p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.card-content p:last-child {
    margin-bottom: 0;
}

/* Simple List */
.simple-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.simple-list li {
    color: var(--muted-foreground);
    padding: 0.375rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.simple-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--muted-foreground);
}

.simple-list li strong {
    color: var(--foreground);
}

/* Feature List with bullets */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--muted-foreground);
}

.feature-list li .bullet {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.feature-list li strong {
    color: var(--foreground);
}

/* Note Box */
.note-box {
    background: hsla(0, 0%, 50%, 0.1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.note-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.note-box p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin: 0;
}

.note-box p strong {
    color: var(--foreground);
}

/* Email Button */
.email-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    transition: background 0.2s ease;
    text-decoration: none;
}

.email-button:hover {
    background: hsla(72, 100%, 50%, 0.9);
}

.email-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Text Small */
.text-small {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Link Primary */
.link-primary {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.link-primary:hover {
    opacity: 0.8;
}

/* Back Link */
.back-link {
    margin-top: 3rem;
    text-align: center;
}

.back-link a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.back-link a:hover {
    opacity: 0.8;
}
