/* ════════════════════════════════════════════════════════ */
/* ============ ESTILOS GLOBALES ============ */
/* ════════════════════════════════════════════════════════ */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background-color: #1a1a2e;
    color: #ecf0f1;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    line-height: 1.7;
}

a { color: #00aec7; text-decoration: none; transition: opacity 0.3s; }
a:hover { opacity: 0.8; text-decoration: underline; }

/* ════════════════════════════════════════════════════════ */
/* ============ NAVEGACIÓN PRINCIPAL ============ */
/* ════════════════════════════════════════════════════════ */

.nav-principal {
    background: linear-gradient(135deg, #02488d 0%, #02616f 100%);
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* LOGO IMAGEN (reemplaza el texto) */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1.3em;
    font-weight: bold;
    transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.8; text-decoration: none; }

.nav-logo img {
    height: 45px;  /* 👈 Ajustá este valor según tu logo */
    width: auto;
    object-fit: contain;
}

/* Opcional: si querés texto + imagen, descomentá esto */
.nav-logo span {
    display: none;  /* 👈 Cambiá a 'block' si querés texto + imagen */
}

/* Responsive para móvil */
@media (max-width: 600px) {
    .nav-logo img {
        height: 35px;  /* 👈 Más chico en móvil */
    }
    .nav-menu {
        gap: 15px;
        font-size: 0.9em;
    }
}

/* ════════════════════════════════════════════════════════ */
/* ============ HERO SECTION ============ */
/* ════════════════════════════════════════════════════════ */
.hero {
    background: linear-gradient(135deg, rgba(0,174,199,0.3) 0%, rgba(0,102,204,0.3) 100%);
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #00aec7;
}

.hero p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    background: linear-gradient(135deg, #00aec7 0%, #0066cc 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,174,199,0.4);
    text-decoration: none;
}
.btn-hero.secondary {
    background: transparent;
    border: 2px solid #00aec7;
}
.btn-hero.accent {
    background: linear-gradient(135deg, #ce0037 0%, #e74c3c 100%);
}
.btn-hero.accent:hover {
    box-shadow: 0 8px 25px rgba(206,0,55,0.4);
}

/* ════════════════════════════════════════════════════════ */
/* ============ SECCIONES GENERALES ============ */
/* ════════════════════════════════════════════════════════ */
.app-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2em;
    color: #00aec7;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ════════════════════════════════════════════════════════ */
/* ============ GRID DE HERRAMIENTAS ============ */
/* ════════════════════════════════════════════════════════ */
.herramientas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.herramienta-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.herramienta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,174,199,0.2);
}

.herramienta-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.herramienta-title {
    font-size: 1.3em;
    color: #00aec7;
    margin-bottom: 10px;
}

.herramienta-desc {
    opacity: 0.8;
    margin-bottom: 20px;
}

.btn-herramienta {
    background: linear-gradient(135deg, #00aec7 0%, #0066cc 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-size: 0.95em;
    transition: transform 0.2s;
}
.btn-herramienta:hover { 
    transform: translateY(-2px); 
    text-decoration: none; 
}
.btn-herramienta.accent {
    background: linear-gradient(135deg, #ce0037 0%, #e74c3c 100%);
}

/* ════════════════════════════════════════════════════════ */
/* ============ CONTENIDO SEO ============ */
/* ════════════════════════════════════════════════════════ */
.seo-content {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px;
    margin: 60px 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.seo-content h1 {
    color: #00aec7;
    margin-bottom: 25px;
    font-size: 2em;
}

.seo-content h2 {
    color: #00aec7;
    margin: 30px 0 15px 0;
    font-size: 1.6em;
}

.seo-content h3 {
    color: #ce0037;
    margin: 25px 0 12px 0;
    font-size: 1.3em;
}

.seo-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.seo-content ul {
    margin: 15px 0 15px 30px;
}

.seo-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.seo-content a {
    color: #00aec7;
    text-decoration: underline;
}

/* ════════════════════════════════════════════════════════ */
/* ============ BLOG - ARTÍCULOS ============ */
/* ════════════════════════════════════════════════════════ */
.blog-article {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    opacity: 0.8;
    font-size: 0.9em;
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-content h1 {
    color: #00aec7;
    font-size: 2.2em;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-content h2 {
    color: #00aec7;
    font-size: 1.6em;
    margin: 35px 0 15px 0;
    border-bottom: 2px solid rgba(0,174,199,0.3);
    padding-bottom: 10px;
}

.blog-content h3 {
    color: #ce0037;
    font-size: 1.3em;
    margin: 25px 0 12px 0;
}

.blog-content p {
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 1.05em;
}

.blog-content ul,
.blog-content ol {
    margin: 20px 0 20px 30px;
}

.blog-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.blog-content table th {
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid #00aec7;
    background: rgba(0,174,199,0.2);
    color: #00aec7;
}

.blog-content table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.blog-content table tr:hover {
    background: rgba(255,255,255,0.05);
}

.blog-tip {
    background: rgba(0,174,199,0.1);
    border-left: 4px solid #00aec7;
    padding: 20px;
    border-radius: 0 15px 15px 0;
    margin: 25px 0;
}

.blog-tip strong {
    color: #00aec7;
    display: block;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.blog-warning {
    background: rgba(206,0,55,0.1);
    border-left: 4px solid #ce0037;
    padding: 20px;
    border-radius: 0 15px 15px 0;
    margin: 25px 0;
}

.blog-warning strong {
    color: #ce0037;
    display: block;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.blog-image {
    width: 100%;
    border-radius: 15px;
    margin: 25px 0;
    background: rgba(255,255,255,0.1);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    opacity: 0.8;
}

.blog-cta {
    background: linear-gradient(135deg, rgba(0,174,199,0.2) 0%, rgba(0,102,204,0.2) 100%);
    border: 2px solid #00aec7;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
}

.blog-cta h3 {
    color: #00aec7;
    margin-bottom: 15px;
}

.blog-cta.accent {
    background: linear-gradient(135deg, rgba(206,0,55,0.2) 0%, rgba(231,76,60,0.2) 100%);
    border-color: #ce0037;
}

.blog-cta.accent h3 {
    color: #ce0037;
}

.blog-cta .btn-cta {
    background: linear-gradient(135deg, #00aec7 0%, #0066cc 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    margin-top: 15px;
}

.blog-cta .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,174,199,0.4);
    text-decoration: none;
}

.blog-cta .btn-cta.accent {
    background: linear-gradient(135deg, #ce0037 0%, #e74c3c 100%);
}

.blog-cta .btn-cta.accent:hover {
    box-shadow: 0 8px 25px rgba(206,0,55,0.4);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    margin: 40px 0;
}

.blog-author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00aec7 0%, #0066cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    flex-shrink: 0;
}

.blog-author-info strong {
    color: #00aec7;
    display: block;
    margin-bottom: 5px;
}

.blog-related {
    margin: 40px 0;
}

.blog-related h3 {
    color: #00aec7;
    margin-bottom: 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.related-card {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-card a {
    color: #00aec7;
    font-weight: bold;
}

/* ════════════════════════════════════════════════════════ */
/* ============ TIENDA SUTIL ============ */
/* ════════════════════════════════════════════════════════ */
.tienda-section {
    background: rgba(0,174,199,0.1);
    padding: 60px 20px;
    text-align: center;
    margin: 60px 0;
    border-top: 2px solid #ce0037;
    border-bottom: 2px solid #ce0037;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 40px auto 0 auto;
}

.producto-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.producto-card:hover {
    transform: scale(1.03);
}

.producto-nombre {
    color: #00aec7;
    font-size: 1.2em;
    margin: 15px 0 10px 0;
}

.producto-precio {
    font-size: 1.4em;
    font-weight: bold;
    color: #ce0037;
}

/* ════════════════════════════════════════════════════════ */
/* ============ HERRAMIENTAS - ESTILOS COMUNES ============ */
/* ════════════════════════════════════════════════════════ */

/* Contenedor de herramienta funcional */
.tool-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 60vh;
}

/* Botones de acción de herramientas */
.btn-tool {
    background: linear-gradient(135deg, #00aec7 0%, #0066cc 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    border: none;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin: 10px;
}
.btn-tool:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,174,199,0.4);
    text-decoration: none;
}
.btn-tool.accent {
    background: linear-gradient(135deg, #ce0037 0%, #e74c3c 100%);
}
.btn-tool.accent:hover {
    box-shadow: 0 8px 25px rgba(206,0,55,0.4);
}

/* Botón volver */
.btn-volver-tool {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s;
    margin: 10px;
    display: inline-block;
    text-align: center;
    line-height: 1.5;
}
.btn-volver-tool:hover {
    background: rgba(255,255,255,0.3);
    text-decoration: none;
}

/* Acciones de herramientas */
.tool-acciones {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

/* Info mínima */
.tool-info-minima {
    opacity: 0.6;
    font-size: 0.9em;
    margin-top: 30px;
    text-align: center;
    line-height: 1.6;
}

/* Selector de tipos (dados, etc.) */
.tool-selector-tipos {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.btn-selector {
    background: #34495e;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 0.85em;
    border: none;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-selector.activo {
    background: linear-gradient(135deg, #00aec7 0%, #0066cc 100%);
}

/* Selector de cantidad */
.tool-selector-cantidad {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tool-selector-cantidad span {
    font-size: 0.9em;
    opacity: 0.8;
}
.btn-cantidad {
    background: linear-gradient(135deg, #00aec7 0%, #0066cc 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
}

/* Contenedor de resultado */
.tool-resultado {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px 0;
    min-height: 100px;
}

/* Animación de giro/roll */
.tool-rolling {
    animation: toolRoll 0.3s ease-in-out infinite alternate;
}

@keyframes toolRoll {
    from { transform: rotate(-10deg) scale(1); }
    to { transform: rotate(10deg) scale(1.05); }
}

/* Carta oculta/visible */
.tool-hidden {
    visibility: hidden;
}
.tool-visible {
    visibility: visible;
}

/* Animación de spin */
.tool-spin {
    animation: toolSpin 0.6s ease-in-out;
}

@keyframes toolSpin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(180deg) scale(0.95); }
    50% { transform: rotate(360deg) scale(0.9); }
    75% { transform: rotate(540deg) scale(0.95); }
    100% { transform: rotate(720deg) scale(1); }
}

/* Responsive común para herramientas */
@media (max-width: 600px) {
    .btn-tool { padding: 15px 30px; font-size: 1.1em; }
    .tool-container { padding: 15px; }
}


/* ════════════════════════════════════════════════════════ */
/* ============ FOOTER ============ */
/* ════════════════════════════════════════════════════════ */
.footer {
    background: rgba(0,0,0,0.3);
    padding: 40px 20px;
    text-align: center;
}

.footer-logo {
    font-size: 1.3em;
    font-weight: bold;
    color: #00aec7;
    margin-bottom: 15px;
    display: block;
}

.footer-description {
    opacity: 0.8;
    margin-bottom: 20px;
    font-size: 0.95em;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 25px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links a {
    color: #00aec7;
    text-decoration: none;
    font-size: 0.9em;
    transition: opacity 0.3s;
}
.footer-links a:hover { opacity: 0.8; text-decoration: underline; }

.footer-redes {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 25px 0;
    font-size: 1.4em;
}

.footer-redes a {
    color: #ecf0f1;
    transition: transform 0.3s, color 0.3s;
}
.footer-redes a:hover {
    color: #ce0037;
    transform: translateY(-3px);
    text-decoration: none;
}

.footer-contact {
    margin: 20px 0;
    font-size: 0.9em;
    opacity: 0.9;
}

.footer-contact a {
    color: #00aec7;
    text-decoration: none;
}

.footer-copyright {
    opacity: 0.6;
    font-size: 0.85em;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ════════════════════════════════════════════════════════ */
/* ============ RESPONSIVE ============ */
/* ════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .nav-container { flex-direction: column; text-align: center; }
    .hero h1 { font-size: 1.8em; }
    .hero p { font-size: 1em; }
    .seo-content { padding: 25px; }
    .blog-article { padding: 25px; margin: 20px; }
    .blog-content h1 { font-size: 1.8em; }
    .blog-content h2 { font-size: 1.4em; }
    .blog-author { flex-direction: column; text-align: center; }
    .section-title { font-size: 1.6em; }
    .footer-links { flex-direction: column; gap: 15px; }
    .blog-meta { flex-direction: column; gap: 10px; }
}

/* ════════════════════════════════════════════════════════ */
/* ============ ALIASES PARA COMPATIBILIDAD ============ */
/* ════════════════════════════════════════════════════════ */
/* Clases simples para compatibilidad con herramientas existentes */

.hidden { visibility: hidden; }
.visible { visibility: visible; }
.spin { animation: toolSpin 0.6s ease-in-out; }
.rolling { animation: toolRoll 0.3s ease-in-out infinite alternate; }

/* Botones compatibles */
.btn-generar {
    background: linear-gradient(135deg, #00aec7 0%, #0066cc 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    border: none;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin: 10px;
}
.btn-generar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,174,199,0.4);
    text-decoration: none;
}

.btn-volver {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s;
    margin: 10px;
    display: inline-block;
    text-align: center;
    line-height: 1.5;
}
.btn-volver:hover {
    background: rgba(255,255,255,0.3);
    text-decoration: none;
}

/* Layouts compatibles */
.cartas-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 60vh;
}

.acciones {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.info-minima {
    opacity: 0.6;
    font-size: 0.9em;
    margin-top: 30px;
    text-align: center;
    line-height: 1.6;
}

/* Responsive para aliases */
@media (max-width: 600px) {
    .btn-generar { padding: 15px 30px; font-size: 1.1em; }
    .cartas-container { padding: 15px; }
}

/* ════════════════════════════════════════════════════════
   BADGE DE APP EN NAVEGACIÓN
   ════════════════════════════════════════════════════════ */
.nav-app-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ce0037 0%, #e74c3c 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 10px rgba(206, 0, 55, 0.3);
    position: relative;
    animation: pulse-badge 2s ease-in-out infinite;
}

.nav-app-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(206, 0, 55, 0.5);
    text-decoration: none;
    opacity: 1;
}

.badge-icon {
    font-size: 1.2em;
}

.badge-text {
    display: inline;
}

.badge-new {
    background: #00aec7;
    color: white;
    font-size: 0.7em;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
    animation: glow-new 1.5s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glow-new {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Responsive para navegación */
@media (max-width: 768px) {
    .nav-app-badge {
        padding: 6px 12px;
        font-size: 0.85em;
    }
    
    .badge-text {
        display: none; /* Ocultar texto en móvil, dejar solo ícono */
    }
    
    .badge-new {
        display: none; /* Ocultar "NEW" en móvil */
    }
}

/* ════════════════════════════════════════════════════════
   BOTÓN DE APP EN HERO
   ════════════════════════════════════════════════════════ */
.btn-hero.accent {
    background: linear-gradient(135deg, #ce0037 0%, #e74c3c 100%);
    box-shadow: 0 4px 15px rgba(206, 0, 55, 0.3);
}

.btn-hero.accent:hover {
    box-shadow: 0 8px 25px rgba(206, 0, 55, 0.5);
    transform: translateY(-3px);
}

/* Animación especial para el botón de app */
.btn-hero.accent {
    position: relative;
    overflow: hidden;
}

.btn-hero.accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-hero.accent:hover::before {
    left: 100%;
}

/* Responsive para hero buttons */
@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn-hero {
        width: 100%;
        text-align: center;
    }
}