/*
Theme Name: TabacoPorKilos - Tabaco de Liar por Kilos
Theme URI: https://tabacoporkilos.com
Description: Tema WordPress profesional para venta de tabaco de liar por kilos
Version: 1.0.0
Author: TabacoPorKilos
Author URI: https://tabacoporkilos.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tabacoporkilos
*/

/* ============================================
   VARIABLES Y RESET
   ============================================ */

:root {
    --primary-color: #047857;
    --primary-dark: #065f46;
    --primary-900: #064e3b;
    --secondary-color: #fbbf24;
    --secondary-light: #fcd34d;
    --accent-orange: #f97316;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f3f4f6;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --radius: 0.5rem;
    --transition: all 0.3s ease;
}

* {
    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;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

/* ============================================
   TIPOGRAFÍA
   ============================================ */

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

h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
}

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

h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

a:hover {
    color: var(--primary-dark);
}

/* ============================================
   BOTONES
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(to right, var(--secondary-color), #fcd34d);
    color: var(--primary-900);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.btn-secondary {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(251, 191, 36, 0.1);
}

/* ============================================
   HEADER STICKY
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(to right, var(--primary-900), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo-box {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to bottom right, var(--secondary-color), #f59e0b);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-900);
    flex-shrink: 0;
}

.site-logo {
    font-size: 1.25rem;
    font-weight: bold;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.site-title {
    font-size: 1.25rem;
    margin: 0;
    color: white;
    font-weight: 700;
}

.site-title a {
    color: white;
    text-decoration: none;
}

.site-description {
    font-size: 0.7rem;
    color: var(--secondary-light);
    margin: 0;
    font-weight: 500;
}

.main-navigation {
    display: none;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

@media (min-width: 768px) {
    .main-navigation {
        display: flex;
    }
}

.nav-link {
    color: white;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.whatsapp-btn {
    background: var(--secondary-color);
    color: var(--primary-900);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.whatsapp-btn:hover {
    background: var(--secondary-light);
    transform: scale(1.05);
}

.cart-icon {
    position: relative;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-color);
    color: var(--primary-900);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.75), rgba(5, 46, 22, 0.85)), 
                linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(5, 46, 22, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    max-width: 1280px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    color: white;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background: rgba(251, 191, 36, 0.2);
    color: var(--secondary-light);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: bold;
    border: 1px solid rgba(251, 191, 36, 0.5);
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 4.5rem;
    }
}

.hero-content h1 .highlight {
    color: var(--secondary-color);
}

.hero-content > p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.hero-box {
    background: rgba(251, 191, 36, 0.15);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    display: none;
}

@media (min-width: 768px) {
    .hero-box {
        display: block;
    }
}

.leaf-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.hero-box-label {
    color: var(--secondary-light);
    font-weight: bold;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.hero-box-price {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin: 0.5rem 0;
}

/* ============================================
   SECCIONES
   ============================================ */

.section {
    padding: 5rem 1rem;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-white {
    background-color: var(--bg-white);
}

.section-light {
    background-color: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ============================================
   LAYOUT DOS COLUMNAS
   ============================================ */

.two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 768px) {
    .two-column {
        grid-template-columns: 1fr 1fr;
    }
}

.column-left h2 {
    margin-bottom: 1.5rem;
}

.column-left p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.features-box {
    background: linear-gradient(to bottom right, rgba(6, 120, 84, 0.1), rgba(251, 191, 36, 0.05));
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(6, 120, 84, 0.2);
}

.features-box h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.features-list strong {
    color: var(--primary-color);
    display: block;
}

.features-list span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   GRID DE FEATURES
   ============================================ */

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

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

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ============================================
   COMPARATIVA
   ============================================ */

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.comparison-card {
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--border-color);
}

.comparison-card.industrial {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.3);
}

.comparison-card.natural {
    background: rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.3);
}

.comparison-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

/* ============================================
   SELECTOR DE VARIEDADES
   ============================================ */

.variety-selector {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.variety-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
}

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

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

/* ============================================
   GRID DE PRODUCTOS
   ============================================ */

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

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

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

.product-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 1rem;
    color: var(--primary-color);
    margin: 0;
    text-align: left;
}

.product-star {
    font-size: 1.2rem;
}

.product-price-box {
    background: rgba(251, 191, 36, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--primary-color);
}

.product-price-per-kg {
    font-size: 0.85rem;
    color: var(--text-light);
}

.add-to-cart-btn {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.add-to-cart-btn:hover {
    background: var(--primary-dark);
}

/* ============================================
   GRID DE VARIEDADES
   ============================================ */

.varieties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .varieties-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.variety-card {
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--border-color);
    background: white;
}

.variety-lemon {
    border-color: var(--secondary-color);
    background: linear-gradient(to bottom right, rgba(251, 191, 36, 0.05), white);
}

.variety-medium {
    border-color: var(--accent-orange);
    background: linear-gradient(to bottom right, rgba(249, 115, 22, 0.05), white);
}

.variety-header {
    margin-bottom: 1rem;
}

.variety-header h3 {
    color: var(--primary-color);
    margin: 0;
}

.variety-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0.25rem 0 0 0;
}

.variety-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.variety-specs {
    background: rgba(0, 0, 0, 0.02);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.spec {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.spec-label {
    color: var(--text-light);
    font-weight: 600;
}

.spec-value {
    color: var(--primary-color);
    font-weight: bold;
}

.variety-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ============================================
   PROCESO DE COMPRA
   ============================================ */

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

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

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

.process-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--border-color);
    text-align: center;
}

.process-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to bottom right, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.process-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.process-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ============================================
   GARANTÍAS
   ============================================ */

.guarantees-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.guarantee-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--border-color);
    text-align: center;
}

.guarantee-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.guarantee-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.guarantee-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ============================================
   CONSERVACIÓN
   ============================================ */

.conservation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .conservation-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.conservation-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.conservation-card {
    background: rgba(6, 120, 84, 0.05);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary-color);
}

.conservation-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.conservation-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.conservation-box {
    background: linear-gradient(to bottom right, rgba(6, 120, 84, 0.1), rgba(251, 191, 36, 0.05));
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(6, 120, 84, 0.3);
}

.conservation-box-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.conservation-box h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.conservation-box p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.conservation-tip {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
}

.conservation-tip p {
    margin: 0;
    font-size: 0.9rem;
}

/* ============================================
   FAQs
   ============================================ */

.faqs-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(6, 120, 84, 0.05);
}

.faq-toggle {
    transition: var(--transition);
}

.faq-toggle.active {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(6, 120, 84, 0.02);
}

.faq-answer.active {
    max-height: 500px;
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   CTA FINAL
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary-900), var(--primary-dark));
    color: white;
    padding: 5rem 1rem;
    text-align: center;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-buttons .btn {
    min-width: 250px;
}

.cta-footer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .header-inner {
        padding: 0.5rem 1rem;
        gap: 1rem;
    }
    
    .site-branding {
        gap: 0.5rem;
    }
    
    .logo-box {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .site-title {
        font-size: 1rem;
    }
    
    .site-description {
        font-size: 0.65rem;
    }
    
    .whatsapp-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .varieties-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: linear-gradient(to right, var(--primary-900), var(--primary-dark));
    color: #d1d5db;
    padding: 4rem 1rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
}

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

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

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

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-box {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(to bottom right, var(--secondary-color), #f59e0b);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-900);
    flex-shrink: 0;
    font-size: 1rem;
}

.footer-brand {
    font-size: 1.1rem;
    color: white;
    margin: 0;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.75rem;
    color: var(--secondary-light);
    margin: 0.25rem 0 0 0;
}

.footer-description {
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    font-size: 1.5rem;
    color: #d1d5db;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}

.footer-title {
    font-size: 1rem;
    color: white;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--secondary-color);
    padding-left: 0.5rem;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #d1d5db;
}

.contact-icon {
    font-size: 1.1rem;
    min-width: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #d1d5db;
    margin: 0.5rem 0;
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--secondary-light);
}

.footer-legal {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* ============================================
   UTILIDADES
   ============================================ */

.highlight {
    color: var(--secondary-color);
}

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
