/* 
   Zero-Ohm Systems - Official Microsite Stylesheet
   Designed by: Clavemedia assisted by Antigravity Code Assistant
   Theme: High-Fidelity Coastal Tech (Oceanic Deep & Cyan Neon)
*/

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

/* --- DESIGN SYSTEM TOKENS --- */
:root {
    --bg-primary: #0B192C;
    --bg-secondary: #0f223a;
    --bg-card: rgba(21, 42, 74, 0.6);
    --bg-card-hover: rgba(0, 210, 196, 0.08);
    --primary: #00D2C4;
    --primary-glow: rgba(0, 210, 196, 0.4);
    --primary-hover: #00F3E4;
    --accent-gold: #F39C12;
    --accent-gold-glow: rgba(243, 156, 18, 0.3);
    --text-main: #F5F7F8;
    --text-muted: #A0B4C8;
    --border-color: rgba(0, 210, 196, 0.15);
    --border-color-hover: rgba(0, 210, 196, 0.4);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --header-height: 80px;
}

/* --- RESET & BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 210, 196, 0.3);
    border-radius: 5px;
    border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #FFF 30%, var(--primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    position: relative;
    margin-bottom: 4.5rem;
    background: linear-gradient(to right, #FFF, var(--text-muted));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-glow);
}

h3 {
    font-size: 1.5rem;
    color: #FFF;
    margin-bottom: 1rem;
}

p {
    font-weight: 300;
    color: var(--text-muted);
}

/* --- LAYOUT CONTAINERS --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-subtitle {
    text-align: center;
    max-width: 650px;
    margin: -2.5rem auto 4rem auto;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* --- GLASSMORPHISM COMPONENT --- */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--border-color-hover);
    box-shadow: 0 12px 40px 0 rgba(0, 210, 196, 0.1);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-primary);
    border: none;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 210, 196, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #FFF;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 210, 196, 0.2);
}

/* --- NAVIGATION HEADER --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(11, 25, 44, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 210, 196, 0.1);
    transition: var(--transition-smooth);
}

header.scrolled {
    height: 70px;
    background: rgba(11, 25, 44, 0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: #FFF;
    letter-spacing: 0.05em;
}

.logo-text span {
    color: var(--primary);
}

.logo-svg {
    width: 32px;
    height: 32px;
    fill: var(--primary);
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
    box-shadow: 0 0 8px var(--primary-glow);
}

nav a:hover, nav a.active {
    color: var(--primary);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #FFF;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO SECTION --- */
#inicio {
    padding-top: calc(var(--header-height) + 50px);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

#inicio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(11, 25, 44, 0.95) 40%, rgba(11, 25, 44, 0.3) 100%), url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Dynamic cyan ambient aura */
.glow-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 210, 196, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    top: 10%;
    right: -10%;
    z-index: 2;
    pointer-events: none;
}

#inicio .container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 680px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: .9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-tagline::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 2px;
    background-color: var(--primary);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-badge-container {
    display: flex;
    gap: 2rem;
    margin-top: 3.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-badge-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 210, 196, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid rgba(0, 210, 196, 0.2);
}

.hero-badge-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: #FFF;
}

.hero-badge-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-graphics {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-svg-diagram {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* --- BENEFICIOS (EL PARADIGMA) --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    padding: 3rem 2rem;
    text-align: center;
}

.benefit-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 210, 196, 0.05);
    border: 1px solid rgba(0, 210, 196, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-card-icon {
    background: var(--primary);
    color: var(--bg-primary);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: scale(1.1);
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Comparable Section */
.comparison-box {
    margin-top: 5px;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.comparison-header {
    background: rgba(11, 25, 44, 0.8);
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.comparison-header-col {
    padding: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: center;
    font-size: 1.1rem;
}

.comparison-header-col.traditional {
    background: rgba(231, 76, 60, 0.1);
    color: #E74C3C;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.comparison-header-col.zeroohm {
    background: rgba(0, 210, 196, 0.1);
    color: var(--primary);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.comparison-cell.traditional {
    border-right: 1px solid rgba(255,255,255,0.08);
    background: rgba(231, 76, 60, 0.02);
}

.comparison-cell.zeroohm {
    background: rgba(0, 210, 196, 0.01);
}

.comparison-cell h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.comparison-cell.traditional h4 {
    color: #FFA59E;
}

.comparison-cell.zeroohm h4 {
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-cell.zeroohm h4::before {
    content: '✓';
    color: var(--primary);
    font-weight: 800;
}

.comparison-cell p {
    font-size: 0.9rem;
}

/* --- TECNOLOGIA (COMO FUNCIONA) --- */
.tech-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.tech-explanation h3 {
    font-size: 1.8rem;
    color: #FFF;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.tech-explanation p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.tech-key-points {
    margin: 2rem 0;
    list-style: none;
}

.tech-key-points li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.tech-key-points li strong {
    color: #FFF;
}

.tech-key-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
}

.tech-diagrams {
    position: relative;
}

.diagram-switch {
    display: flex;
    background: rgba(11, 25, 44, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 5px;
    margin-bottom: 2rem;
    width: fit-content;
    box-shadow: var(--card-shadow);
}

.diagram-btn {
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.diagram-btn.active {
    background: var(--primary);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.diagram-wrapper {
    min-height: 380px;
    position: relative;
}

.diagram-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.diagram-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* Layer System Styles */
.layers-grid {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 4rem;
}

.layer-card {
    padding: 2.5rem 2rem;
    position: relative;
}

.layer-num {
    position: absolute;
    top: -20px;
    left: 2rem;
    background: var(--primary);
    color: var(--bg-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px var(--primary-glow);
}

.layer-card h4 {
    margin-top: 0.5rem;
    font-size: 1.25rem;
    color: #FFF;
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

/* --- MODELOS (CATALOGO) --- */
.models-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.tab-btn {
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--bg-primary);
    border-color: var(--primary);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.models-container {
    width: 100%;
    max-width: none;
}

.model-wrapper {
    display: none;
    animation: fadeIn 0.5s ease;
}

.model-wrapper.active {
/*    display: flex; */ /* Flexbox alinea los elementos horizontalmente */
/*    justify-content: space-between; */ /* Espacio entre los elementos */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 100%;
    padding: 0;
}

.model-wrapper > .modelbox {
/*    flex: 1 1 48%; */ /* Controla el crecimiento y contracción */
/*    margin: 0 2%; */ /* Espacio entre los elementos */
}

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

.model-card {
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.model-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(0, 210, 196, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.model-name {
    font-size: 2rem;
    color: #FFF;
    margin-bottom: 0.3rem;
}

.model-subname {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
}

.model-power {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    color: #FFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
}

.model-power span {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted);
}

.model-spec-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.model-spec-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.95rem;
}

.model-spec-list li span:first-child {
    color: var(--text-muted);
}

.model-spec-list li span:last-child {
    color: #FFF;
    font-weight: 500;
}

.model-spec-list li:last-child {
    border-bottom: none;
}

.spec-toggle-btn {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(0, 210, 196, 0.3);
    border-radius: 10px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 1rem;
}

.spec-toggle-btn:hover {
    background: rgba(0, 210, 196, 0.05);
    border-color: var(--primary);
}

.model-extended-specs {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.model-extended-specs.open {
    max-height: 500px;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(0, 210, 196, 0.2);
    padding-top: 1rem;
}

.common-specs-box {
    grid-column: span 2;
    padding: 2.5rem;
    margin-top: 2rem;
}

.common-specs-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: #FFF;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.common-specs-title::before {
    content: '★';
    color: var(--primary);
}

.common-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.common-spec-item {
    background: rgba(11, 25, 44, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 1.2rem;
}

.common-spec-item h5 {
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.common-spec-item p {
    font-size: 0.85rem;
}

/* --- CASOS DE EXITO --- */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.case-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.case-quote {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    color: #E2E8F0;
}

.case-quote::before {
    content: '“';
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 4rem;
    color: rgba(0, 210, 196, 0.1);
    font-family: Georgia, serif;
}

.case-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.case-location {
    font-family: var(--font-heading);
}

.case-place {
    font-weight: 700;
    font-size: 1.1rem;
    color: #FFF;
}

.case-country {
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.case-stat {
    font-family: var(--font-heading);
    text-align: right;
}

.case-stat-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.case-stat-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Secondary Arena Grid */
.secondary-cases-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 4rem 0 2rem 0;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.secondary-cases-title::after, .secondary-cases-title::before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 1px;
    background: rgba(0, 210, 196, 0.3);
}

.secondary-cases-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.secondary-case-chip {
    background: rgba(21, 42, 74, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 0.6rem 1.8rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.secondary-case-chip:hover {
    border-color: var(--primary);
    color: #FFF;
    background: rgba(0, 210, 196, 0.05);
    transform: translateY(-2px);
}

/* --- ALINEACION PUBLICA --- */
.policy-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.policy-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.policy-item {
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.policy-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 210, 196, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 210, 196, 0.2);
}

.policy-info h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: #FFF;
    margin-bottom: 0.5rem;
}

.policy-info span {
    font-size: 0.8rem;
    background: rgba(243, 156, 18, 0.1);
    color: var(--accent-gold);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.policy-badge-panel {
    padding: 3rem;
    text-align: center;
}

.awards-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px var(--accent-gold-glow));
    animation: pulseGold 3s infinite alternate;
}

@keyframes pulseGold {
    0% { transform: scale(1); filter: drop-shadow(0 0 5px var(--accent-gold-glow)); }
    100% { transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(243, 156, 18, 0.6)); }
}

.awards-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FFF;
}

.awards-list {
    list-style: none;
    text-align: left;
}

.awards-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.awards-list li:last-child {
    border-bottom: none;
}

.award-year {
    color: var(--accent-gold);
    font-weight: 700;
    font-family: var(--font-heading);
}

.award-name {
    color: #FFF;
    font-weight: 500;
}

.award-event {
    color: var(--text-muted);
}

/* --- CONTACTO --- */
.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-lead {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.contact-details {
    list-style: none;
    margin-bottom: 3rem;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.contact-details li svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.contact-branding {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
}

.contact-branding-logo {
    align-items: first baseline;
}

.contact-branding-company {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: normal;
    color: #FFF;
}

.contact-branding-quote {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: #FFF;
}

.contact-branding-sig {
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 0.3rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.contact-form {
    padding: 3rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFF;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input, .form-group textarea, .form-group select {
    background: rgba(11, 25, 44, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.9rem 1.2rem;
    color: #FFF;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 210, 196, 0.2);
    background: rgba(11, 25, 44, 0.8);
}

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

.contact-form .btn {
    width: 100%;
}

/* --- FOOTER --- */
footer {
    background: #060E18;
    padding: 3rem;
    border-top: 1px solid rgba(255,255,255,0.03);
    text-align: center;
    width: auto;
    max-width: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-text {
    align-items: center;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-text a {
    color: var(--primary);
    text-decoration: none;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: #FFF;
    text-decoration: none;
}

.footer-logo span {
    color: var(--primary);
}

/* --- MEDIA QUERIES (RESPONSIVENESS) --- */
@media (max-width: 1024px) {
    #inicio .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-tagline {
        justify-content: center;
    }
    
    .hero-tagline::before {
        display: none;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-badge-container {
        justify-content: center;
    }
    
    .tech-container {
        grid-template-columns: 1fr;
    }
    
    .models-container {
        grid-template-columns: 1fr;
    }
    
    .common-specs-box {
        grid-column: span 1;
    }
    
    .policy-container {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    header .container {
        padding: 0 1.5rem;
    }
    
    nav {
        display: none; /* Mobile menu toggled via JS */
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: rgba(11, 25, 44, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(0, 210, 196, 0.1);
        box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    }
    
    nav.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .comparison-header-col {
        font-size: 0.95rem;
        padding: 0.8rem;
    }
    
    .comparison-cell {
        padding: 1rem;
    }
    
    .layers-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .models-tabs {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0 1rem;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
