/* =============================================
   FIBWI FIRE - Modern CSS Styles
   ============================================= */

/* Variables CSS */
:root {
    --primary-color: #ff871a;
    --secondary-color: #003d84;
    --dark-color: #100033;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --text-light: #666666;
    --border-radius: 8px;
    --box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--light-color);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #e67515;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 135, 26, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--secondary-color);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(16, 0, 51, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* =============================================
   Language Selector Styles
   ============================================= */
.language-selector {
    position: relative;
    margin-left: 20px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
}

.lang-icon {
    font-size: 16px;
}

.lang-current {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 150px;
}

.language-selector:hover .lang-dropdown,
.language-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background-color: #f8f9fa;
}

.lang-option.active {
    background-color: var(--primary-color);
    color: white;
}

.lang-option.active:hover {
    background-color: #e67515;
}

.lang-name {
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

.nav-link {
    color: white;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.btn-contact {
    background: var(--primary-color);
    padding: 8px 20px;
    border-radius: var(--border-radius);
}

.btn-contact:hover {
    background: #e67515;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    margin-top: 82px;
    min-height: 65vh;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,133.3C672,139,768,181,864,181.3C960,181,1056,139,1152,117.3C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    flex: 1;
    padding: 1.5rem;
    color: white;
    z-index: 1;
    animation: slideInLeft 1s ease;
}

.hero-title {
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    opacity: 0.85;
    line-height: 1.6;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 1rem;
    position: relative;
    z-index: 3;
}

.hero-image {
    flex: 1;
    padding: 2rem;
    z-index: 1;
    animation: slideInRight 1s ease;
}

.hero-image img {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Features Section */
.features {
    padding: 100px 0 120px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    background: var(--light-color);
    transition: var(--transition);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

.feature-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 80px;
    max-height: 80px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-img {
    transform: scale(1.05);
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.3;
    word-break: break-word;
    hyphens: auto;
}

.feature-card p {
    color: var(--text-light);
    flex-grow: 1;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    position: relative;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
}

.about-subtitle {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.about-stats .stat {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-stats .stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    line-height: 1.3;
}

/* =============================================
   Stats Section
   ============================================= */
.stats {
    background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));
    color: white;
    padding: 3rem 0 5rem 0;
    position: relative;
    z-index: 1;
    margin: 0;
    clear: both;
}

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

.stat {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    padding: 30px 20px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 135, 26, 0.1) 0%, rgba(0, 61, 132, 0.1) 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255, 135, 26, 0.2) 0%, rgba(0, 61, 132, 0.2) 100%);
}

.service-icon svg {
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    transform: rotate(5deg);
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    color: var(--text-light);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Products Section */
.products {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
}

.products .section-title {
    color: white;
}

.products-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 25px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.tab-button:hover,
.tab-button.active {
    background: white;
    color: var(--secondary-color);
}

.tab-content {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
}

.product-info h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
}

.product-info ul {
    text-align: left;
    max-width: 500px;
    width: 100%;
}

.product-info li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
}

.product-info li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-weight: bold;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e67515 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: white;
    margin-bottom: 20px;
}

.cta p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e67515 100%);
    border-radius: 50%;
    flex-shrink: 0;
    transition: var(--transition);
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        inset 0 2px 10px rgba(255, 255, 255, 0.2),
        0 5px 15px rgba(255, 135, 26, 0.3);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 
        inset 0 2px 10px rgba(255, 255, 255, 0.3),
        0 10px 25px rgba(255, 135, 26, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.contact-icon svg {
    fill: white !important;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.contact-item h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-color);
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 135, 26, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* CAPTCHA Styles */
.captcha-group {
    background: rgba(255, 135, 26, 0.05);
    border: 2px solid rgba(255, 135, 26, 0.2);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 20px 0;
}

.captcha-label {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.captcha-question {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.captcha-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    background: white;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 135, 26, 0.3);
    min-width: 120px;
    text-align: center;
}

.captcha-input {
    width: 120px !important;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 8px !important;
    min-height: 44px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    padding: 5px 0;
}

.footer-section a {
    color: #ccc;
}

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

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-image {
        display: none;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: row;
    }
    
    .nav-toggle {
        display: flex;
        order: 3; /* Botón de menú al final (derecha) */
    }
    
    .nav-brand {
        order: 1; /* Logo al principio (izquierda) */
    }
    
    /* Language Selector Mobile */
    .language-selector {
        margin-left: 10px;
        margin-right: 10px;
        order: 2; /* Selector de idiomas en el medio */
    }
    
    .lang-toggle {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .lang-dropdown {
        right: -10px;
        min-width: 140px;
    }
    
    .lang-option {
        padding: 10px 14px;
    }
    
    .nav-menu {
        position: fixed;
        top: 82px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 82px);
        background: rgba(16, 0, 51, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        min-height: 55vh;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px 15px;
        min-height: 200px;
    }
    
    .feature-card h3 {
        font-size: 0.9rem;
        line-height: 1.2;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-stats .stat {
        padding: 15px;
    }
    
    .about-stats .stat-number {
        font-size: 1.8rem;
    }
    
    .products-tabs {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .features {
        padding: 60px 0 80px 0;
    }
    
    .stats {
        padding: 2rem 0 3rem 0;
        margin: 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .captcha-question {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .captcha-question span {
        min-width: auto;
        text-align: center;
    }
    
    .captcha-input {
        width: 100% !important;
        max-width: 150px;
        margin: 0 auto;
    }
}

/* Extra small screens */
@media (max-width: 320px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat {
        padding: 0.5rem;
    }
}

/* =============================================
   BANNER SIN COOKIES
   ============================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 15px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    border-top: 3px solid var(--primary-color, #ff871a);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text p {
    margin: 0;
    line-height: 1.4;
}

.cookie-text p:first-child {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cookie-text p:last-child {
    font-size: 0.9rem;
    opacity: 0.9;
}

.cookie-btn {
    background: var(--primary-color, #ff871a);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: #e6781a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 135, 26, 0.3);
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-text p:first-child {
        font-size: 1rem;
    }
    
    .cookie-text p:last-child {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        width: 100%;
        max-width: 200px;
    }
}