/* ==========================================================================
   SISTEMA DE DISEÑO & VARIABLES (VERDE AUSTRAL 2026)
   ========================================================================== */
:root {
    /* Colores Curados HSL */
    --forest-green: hsl(150, 64%, 11%);        /* #0A2E1C - Elegancia y Naturaleza */
    --forest-green-light: hsl(150, 50%, 18%);  /* Tono intermedio para gradientes */
    --lime-electric: hsl(90, 61%, 48%);        /* #78C430 - Frescura y Micro-interacciones */
    --lime-hover: hsl(90, 65%, 40%);
    --deep-navy: hsl(220, 69%, 14%);           /* #0B1B3D - Ushuaia, Mar y Frío Extremo */
    --deep-navy-dark: hsl(220, 75%, 8%);
    --muted-gold: hsl(45, 75%, 50%);           /* #D4AF37 - Acabado Institucional */
    
    /* Colores Neutros */
    --bg-white: hsl(210, 40%, 98%);            /* Fondo limpio */
    --bg-card: hsl(0, 0%, 100%);
    --text-main: hsl(215, 28%, 17%);           /* Lectura cómoda */
    --text-muted: hsl(215, 16%, 47%);
    --text-light: hsl(210, 40%, 96.1%);
    
    /* Tipografía */
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Parámetros de Diseño */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(10, 46, 28, 0.1), 0 8px 10px -6px rgba(10, 46, 28, 0.05);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-blur: blur(20px);
}

/* ==========================================================================
   RESET & CONFIGURACIÓN BÁSICA
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-white);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}

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

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

li {
    list-style: none;
}

/* ==========================================================================
   CLASES DE UTILIDAD & BOTONES
   ========================================================================== */
.section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

.text-center { text-align: center; }
.text-lime { color: var(--lime-electric) !important; }
.text-white { color: #ffffff !important; }
.text-muted { color: var(--text-muted) !important; }
.text-light { color: var(--text-light) !important; }
.mb-md { margin-bottom: 24px !important; }
.mt-xxl { margin-top: 80px !important; }

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.col-5 { grid-column: span 5; }
.col-7 { grid-column: span 7; }

.gap-lg { gap: 60px; }
.align-center { align-items: center; }

@media (max-width: 992px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .grid-12 {
        display: flex;
        flex-direction: column;
    }
    .order-mobile-1 { order: 1; }
    .order-mobile-2 { order: 2; }
}

/* Botones Premium */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-primary {
    background-color: var(--lime-electric);
    color: var(--forest-green);
}

.btn-primary:hover {
    background-color: var(--lime-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--forest-green);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: var(--forest-green-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--forest-green);
    border-color: var(--forest-green);
}

.btn-outline:hover {
    background-color: var(--forest-green);
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

/* Iconos */
.icon-sm { width: 18px; height: 18px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 32px; height: 32px; }

/* Animaciones */
.anim-spin {
    animation: spin 8s linear infinite;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
    background-color: var(--deep-navy-dark);
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--lime-electric);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--lime-electric);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

.top-bar-links .contact-link {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.85;
}

.top-bar-links .contact-link:hover {
    opacity: 1;
    color: var(--lime-electric);
}

@media (max-width: 600px) {
    .top-bar { display: none; }
}

/* ==========================================================================
   MAIN HEADER & NAV (LOGO OFICIAL EXCLUSIVO)
   ========================================================================== */
.main-header {
    background-color: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

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

.logo-area {
    display: flex;
    align-items: center;
}

/* Diseño Premium Exclusivo de Logo (Sin textos al lado) */
.main-logo-only {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.main-logo-only:hover {
    transform: scale(1.04);
}

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

.nav-link {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    position: relative;
    padding: 8px 0;
}

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

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

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

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

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--forest-green);
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}

@media (max-width: 992px) {
    .nav-toggle { display: flex; }
    
    .nav-menu {
        position: fixed;
        top: 81px;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - 81px);
        background-color: #ffffff;
        box-shadow: -10px 10px 30px rgba(0,0,0,0.05);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        gap: 24px;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .header-actions {
        width: 100%;
        margin-top: 20px;
    }
    .header-actions .btn {
        width: 100%;
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    background-image: url('https://verdeaustral.com.ar/wp-content/uploads/2025/05/Depositphotos_290104066_XL-2-1024x740-1.jpg');
    background-size: cover;
    background-position: center;
    padding: 160px 0 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 46, 28, 0.92) 0%, 
        rgba(11, 27, 61, 0.92) 100%
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-section { padding: 100px 0 60px 0; }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    background-color: rgba(120, 196, 48, 0.15);
    color: var(--lime-electric);
    border: 1px solid rgba(120, 196, 48, 0.3);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

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

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Stats Panel derecho */
.hero-stats-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 992px) {
    .hero-stats-panel {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 600px) {
    .hero-stats-panel {
        flex-direction: column;
    }
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 24px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 196, 48, 0.3);
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .stat-card:hover { transform: translateY(-5px); }
}

.stat-number {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--lime-electric);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   SECCIONES GENERALES & ENCABEZADOS
   ========================================================================== */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--lime-electric);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 2.4rem;
    color: var(--forest-green);
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-divider {
    width: 60px;
    height: 4px;
    background-color: var(--lime-electric);
    margin: 18px auto 24px auto;
    border-radius: var(--radius-full);
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* ==========================================================================
   VALORES / PILARES DE EXCELENCIA
   ========================================================================== */
.pilar-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(10, 46, 28, 0.05);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pilar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(120, 196, 48, 0.2);
}

.pilar-icon-wrapper {
    background-color: rgba(120, 196, 48, 0.08);
    color: var(--lime-electric);
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.pilar-card:hover .pilar-icon-wrapper {
    background-color: var(--lime-electric);
    color: var(--forest-green);
}

.pilar-icon {
    width: 28px;
    height: 28px;
}

.pilar-card-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--forest-green);
    margin-bottom: 14px;
}

.pilar-card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   SERVICIOS / LOGÍSTICA CORPORATIVA
   ========================================================================== */
.servicios-section {
    background-color: #ffffff;
}

.service-text-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-badge {
    background-color: rgba(11, 27, 61, 0.06);
    color: var(--deep-navy);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-h3 {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 2rem;
    color: var(--forest-green);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.service-p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.list-bullet {
    color: var(--lime-electric);
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1;
}

.service-img {
    border-radius: var(--radius-md);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.img-shadow {
    box-shadow: var(--shadow-lg);
}

/* Proveedores del Estado Banner */
.state-provider-banner {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--deep-navy) 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
    color: #ffffff;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .state-provider-banner { padding: 30px; }
}

.state-badge {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--muted-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
}

.state-h3 {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.25;
    margin-bottom: 18px;
    color: #ffffff;
}

.state-p {
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 24px;
}

.state-meta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted-gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.state-img {
    border-radius: var(--radius-md);
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   PYMES & CUENTA CORRIENTE
   ========================================================================== */
.pymes-section {
    background-color: var(--bg-white);
}

.benefit-card {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 46, 28, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

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

.benefit-head {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.benefit-num {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--lime-electric);
    line-height: 1;
    margin-bottom: 12px;
}

.benefit-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--forest-green);
}

.benefit-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.benefit-link {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--forest-green);
    display: inline-block;
}

.benefit-link:hover {
    color: var(--lime-electric);
    transform: translateX(4px);
}

/* Ficha Destacada */
.featured-benefit {
    background: linear-gradient(135deg, var(--forest-green-light) 0%, var(--forest-green) 100%);
    box-shadow: var(--shadow-lg);
}

.featured-benefit .benefit-text {
    color: var(--text-light);
}

/* ==========================================================================
   COTIZADOR / CALCULADORA INTERACTIVA
   ========================================================================== */
.calculator-section {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--forest-green) 100%);
    color: #ffffff;
}

.calculator-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.calc-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.c-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.c-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(120, 196, 48, 0.15);
    color: var(--lime-electric);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

/* Ficha Calculadora */
.calculator-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 600px) {
    .calculator-card { padding: 24px; }
}

.calc-card-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 28px;
    text-align: center;
}

.calc-group {
    margin-bottom: 24px;
}

.calc-label {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 12px;
    display: block;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.calc-value {
    background-color: var(--lime-electric);
    color: var(--forest-green);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.segment-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.segment-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 10px 4px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.segment-btn.active, .segment-btn:hover {
    background-color: var(--lime-electric);
    color: var(--forest-green);
    border-color: var(--lime-electric);
}

/* Slider Custom */
.calc-slider {
    width: 100%;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    border-radius: var(--radius-full);
    outline: none;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lime-electric);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(120, 196, 48, 0.5);
    transition: var(--transition-smooth);
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-scale {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.7;
    margin-top: 8px;
}

/* Caja de Resultados */
.calc-result-box {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 28px;
}

.result-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--lime-electric);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 6px;
}

.result-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.result-text {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    opacity: 0.85;
}

/* ==========================================================================
   CONTACTO & FORMULARIO
   ========================================================================== */
.contacto-section {
    background-color: #ffffff;
}

.contact-info-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(10, 46, 28, 0.05);
    padding: 40px;
    border-radius: var(--radius-lg);
    height: 100%;
}

.info-card-h3 {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--forest-green);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.info-texts {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--forest-green);
    transition: var(--transition-smooth);
}

a.info-value:hover {
    color: var(--lime-electric);
}

/* Ficha del Formulario */
.contact-form {
    background-color: #ffffff;
    border: 1px solid rgba(10, 46, 28, 0.05);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    padding: 40px;
}

@media (max-width: 600px) {
    .contact-form { padding: 24px; }
}

.form-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--forest-green);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

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

.form-label {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-main);
    display: block;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-main);
    background-color: var(--bg-white);
    border: 1px solid rgba(10, 46, 28, 0.1);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--lime-electric);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(120, 196, 48, 0.1);
}

.grid-2.gap-sm {
    gap: 20px;
}

@media (max-width: 600px) {
    .grid-2.gap-sm {
        grid-template-columns: 1fr;
    }
}

.form-status-msg {
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-sm);
}

.form-status-msg.success {
    padding: 10px;
    background-color: rgba(120, 196, 48, 0.1);
    color: var(--forest-green);
    border: 1px solid rgba(120, 196, 48, 0.2);
}

.form-status-msg.error {
    padding: 10px;
    background-color: rgba(220, 38, 38, 0.1);
    color: hsl(0, 72%, 40%);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

/* ==========================================================================
   FOOTER (LOGO OFICIAL Y ACCESO A SISTEMAS)
   ========================================================================== */
.footer {
    background-color: var(--deep-navy-dark);
    color: var(--text-light);
    padding: 80px 0 30px 0;
    border-top: 4px solid var(--lime-electric);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-col-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Diseño Premium Exclusivo del Logo del Footer */
.footer-logo-only {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-brand-text {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link-btn:hover {
    background-color: var(--lime-electric);
    color: var(--forest-green);
    border-color: var(--lime-electric);
    transform: translateY(-3px);
}

.footer-col-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--lime-electric);
    padding-left: 4px;
}

/* Botón Acceso a Sistemas en la Base del Footer */
.footer-systems-access {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.btn-systems-access {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.btn-systems-access:hover {
    color: var(--lime-electric);
    background-color: rgba(120, 196, 48, 0.05);
    border-color: rgba(120, 196, 48, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   FLOATING BUTTONS & TOOLTIPS
   ========================================================================== */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: var(--transition-smooth);
}

.float-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    animation: pulse-ring 2s infinite;
}

.float-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

.float-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: red;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
