* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #f8f8f8;
    color: #333;
}


body:not(.catalog-body) {
    padding-top: 140px; /* Solo para páginas que NO sean catálogo */
}

/* ========== HEADER STICKY CON EFECTO SCROLL ========== */
header {
    background-color: white;
    padding: 20px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed; /* Fijo en la parte superior */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out; /* Animación suave */
}

/* Cuando el header está visible (scroll hacia arriba) */
header.visible {
    transform: translateY(0);
}

/* Cuando el header está oculto (scroll hacia abajo) */
header.hidden {
    transform: translateY(-100%);
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Esto centra correctamente */
    margin-bottom: 20px;
}

/* Barra de búsqueda minimalista */
.search-container {
    position: relative;
    width: 250px;
}

.search-input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border: none;
    background-color: transparent;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-bottom-color: #927a1b;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 15px;
}

.logo {
    font-family: 'Playfair Display', serif;
     font-size: 50px;
    font-weight: 800;
    letter-spacing: 10px;
    background: linear-gradient(to right, #927a1b, #ddd79a, #927a1b, #ddd796, #927a1b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;

}

.icon svg {
    width: 15px;
    height: 15px;
    vertical-align: middle;
    display: inline-block;
}

.user-icons {
    display: flex;
    gap: 25px;
    width: 250px;
    justify-content: flex-end;
    align-items: center; 
}

.icon {
    font-size: 15px !important;
    cursor: pointer;
    color: #000000;
    transition: color 0.3s ease;
    display: flex;
    align-items: center; /* Añade esto */
}

.icon:hover {
    color: #927a1b;
}

/* Para alinear los iconos de FontAwesome con SVG */
.icon i, .icon svg {
    font-size: inherit;
    vertical-align: middle;
}


.categories {
    display: flex;
    justify-content: center;
    border-top: 1px solid #eee;
    gap: 40px;
    padding-top: 15px;
}

.category {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.category:hover {
    color: #927a1b;
}

.category::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #927a1b;
    transition: width 0.3s ease;
}

.category:hover::after {
    width: 100%;
}

/* ========== PROMOCIÓN SPLIT - VERSIÓN MINIMALISTA ========== */
.split-promo {
    display: flex;
    width: 100%;
    height: 380px;
    margin: 60px 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
    border: 1px solid #f0f0f0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.split-promo.visible {
    opacity: 1;
    transform: translateY(0);
}

.split-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* Badge minimalista */
.promo-badge {
    background: transparent;
    color: #666;
    padding: 6px 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    width: fit-content;
    border-bottom: 1px solid #000;
    opacity: 0.7;
}

/* Títulos minimalistas */
.promo-title {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 32px;
    color: #000000;
    margin-bottom: 12px;
    font-weight: 300;
    letter-spacing: -1px;
    line-height: 1.1;
}

.promo-subtitle {
    color: #777;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.3px;
    max-width: 400px;
}

.promo-description {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 400px;
    font-weight: 300;
}

/* Características sutiles */
.promo-features {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    padding: 6px 12px;
    color: #666;
    font-size: 12px;
    font-weight: 400;
    border: 1px solid #eee;
    transition: all 0.2s;
}

.feature:hover {
    border-color: #000;
    background: #fafafa;
}

.feature i {
    color: #666;
    font-size: 12px;
    opacity: 0.6;
}

/* Precios minimalistas */
.promo-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 30px;
    align-items: center;
}

.old-price {
    color: #999;
    font-size: 16px;
    text-decoration: line-through;
    font-weight: 300;
}

.new-price {
    color: #000;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.discount {
    background: #f5f5f5;
    color: #666;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid #eee;
}

/* Botón minimalista */
.promo-button {
    background: #252524;
    color: white;
    border: 1px solid #000;
    padding: 14px 35px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
    width: fit-content;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.promo-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.promo-button:hover {
    background: #222;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.promo-button:hover::after {
    left: 100%;
}

.promo-button:hover i {
    transform: translateX(3px);
}

.promo-button i {
    font-size: 14px;
    transition: transform 0.3s;
}

/* Imagen minimalista */
.split-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100%;
    position: relative;
    transform: translateX(50px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
    transition-delay: 0.2s;
    border-left: 1px solid #f0f0f0;
}

.split-promo.visible .split-image {
    transform: translateX(0);
    opacity: 1;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.3), transparent);
    z-index: 1;
    pointer-events: none;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
    filter: grayscale(0.1);
}

.split-promo:hover .split-image img {
    transform: scale(1.03);
}



/* Responsive */
@media (max-width: 992px) {
    .split-promo {
        flex-direction: column;
        height: auto;
        margin: 40px 0;
    }
    
    .split-content,
    .split-image {
        width: 100%;
    }
    
    .split-content {
        padding: 30px;
        order: 2;
    }
    
    .split-image {
        height: 250px;
        order: 1;
        border-left: none;
        border-bottom: 1px solid #f0f0f0;
        transform: translateY(30px);
    }
    
    .split-promo.visible .split-image {
        transform: translateY(0);
    }
    
    .promo-title {
        font-size: 28px;
    }
    
    .promo-features {
        justify-content: flex-start;
    }
}

/* Efecto hover general para toda la promo */
.split-promo {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.split-promo:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/*PRODUCTOS*/
.store-section {
    padding: 0 30px;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.store-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

/* TARJETA MINIMALISTA CON ANIMACIÓN */
.product-card {
    background-color: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

/* Animación escalonada para cada tarjeta al hacer scroll */
.product-card:nth-child(1) { transition-delay: 0.1s; }
.product-card:nth-child(2) { transition-delay: 0.2s; }
.product-card:nth-child(3) { transition-delay: 0.3s; }
.product-card:nth-child(4) { transition-delay: 0.4s; }

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-5px);
}

/* IMAGEN DEL PRODUCTO */
.product-image {
    height: 260px; /* Compacto pero elegante */
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

/* OVERLAY HOVER - SUTIL PERO VISIBLE */
.product-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-hover {
    opacity: 1;
}

/* Iconos discretos */
.wishlist-icon, .add-cart-icon {
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
}

.wishlist-icon:hover, .add-cart-icon:hover {
    background-color: rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

.wishlist-icon:hover {
    color: #ff6b6b;
}

.add-cart-icon:hover {
    color: #927a1b;
}

/* INFORMACIÓN DEL PRODUCTO - MINIMALISTA */
.product-info {
    padding: 0;
    text-align: center;
    background-color: transparent;
}

.product-name {
    font-weight: 400;
    margin-bottom: 6px;
    color: #222;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.3;
}

.product-brand {
    color: #777;
    font-size: 12px;
    margin-bottom: 8px;
    letter-spacing: 0.8px;
    font-weight: 300;
    text-transform: uppercase;
}

.product-price {
    color: #222;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* Para cuando hay descuento */
.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 6px;
    font-size: 13px;
    font-weight: 300;
}

/* Etiqueta de oferta */
.sale-badge {
    background-color: #ff5252;
    color: white;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 500;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* TÍTULO DE SECCIÓN CON ANIMACIÓN */
.section-title {
    font-size: 25px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 25px;
    margin-top: 25px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.store-section.visible .section-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background-color: #927a1b;
    opacity: 0.5;
}

/* RESPONSIVE CON ANIMACIONES */
@media (max-width: 768px) {
    .store-section {
        padding: 0 20px;
        margin-bottom: 60px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 30px;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-name {
        font-size: 13px;
    }
    
    .product-price {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 20px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .store-section {
        padding: 0 15px;
        margin-bottom: 50px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-image {
        height: 180px;
        margin-bottom: 12px;
    }
    
    .product-name {
        font-size: 12px;
    }
    
    .product-brand {
        font-size: 11px;
    }
    
    .product-price {
        font-size: 13px;
    }
    
    /* Ajustar delays para móviles */
    .product-card:nth-child(1) { transition-delay: 0.05s; }
    .product-card:nth-child(2) { transition-delay: 0.1s; }
    .product-card:nth-child(3) { transition-delay: 0.15s; }
    .product-card:nth-child(4) { transition-delay: 0.2s; }
}
footer {
    background-color: #000000;
    color: white;
    padding: 40px 30px;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    font-size: 13px;
    margin-bottom: 15px;
    color: #cfcccc;
    /* Añade estas líneas para alinear mejor */
    margin-left: 0;
    padding-left: 0;
    text-align: left;
    width: 100%;
    display: block;
}

.footer-links {
    list-style: none;
    font-size: 13px;
    /* Añade estas líneas para alinear con el título */
    margin: 0;
    padding: 0;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 5px;
    /* Alinea los puntos de la lista */
    padding-left: 0;
    margin-left: 0;
}

.footer-links a {
    color: #cfcccc;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    width: 100%;
}

.footer-links a:hover {
    color: #927a1b;
}

/* ========== ESTILOS PARA ICONOS DE REDES SOCIALES ========== */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0px;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.fab.fa-instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-icon.fab.fa-tiktok:hover {
    background-color: #000000;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-float a {
    color: white;
    font-size: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #cfcccc;
    color: #ffffff;
    font-size: 14px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    /* Header */
    header {
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 32px;
    }
    
    .categories {
        gap: 15px;
        justify-content: center;
    }
    
    .category-item {
        font-size: 14px;
        padding: 4px 8px;
    }
    
    .user-icons {
        gap: 15px;
    }
    
    .icon {
        font-size: 20px;
    }
    
    /* Slider */
    .slider-container {
        height: 350px;
    }
    
    .slide-title {
        font-size: 28px;
    }
    
    /* Promoción */
    .split-promo {
        flex-direction: column;
        min-height: auto;
    }
    
    .split-content {
        padding: 30px;
    }
    
    .split-image {
        height: 300px;
    }
    
    /* Productos */
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .product-image {
        height: 220px;
        font-size: 60px;
    }
    
    .store-section {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    /* Iconos del hover */
    .wishlist-icon, .add-cart-icon {
        font-size: 24px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    /* Slider */
    .slider-container {
        height: 300px;
    }
    
    .slide-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .slide-button {
        padding: 6px 20px;
        font-size: 13px;
    }
    
    /* Productos */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-image {
        height: 180px;
        font-size: 50px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name {
        font-size: 16px;
    }
    
    .product-price {
        font-size: 16px;
    }
}

@media (min-width: 769px) {
    /* Header Desktop */
    .categories {
        justify-content: center;
        gap: 40px;
        padding-top: 15px;
    }
    
    .category-item {
        font-size: 18px;
        padding: 8px 15px;
    }
    
    .user-icons {
        gap: 25px;
    }
    
    .icon {
        font-size: 24px;
    }
}



/* ========== PERFIL ========== */
.profile-body {
    padding-top: 140px;
    background-color: #f8f8f8;
}

.profile-container {
    display: flex;
    justify-content: center;
    padding: 40px 20px 80px;
}

.profile-card {
    background: white;
    width: 100%;
    max-width: 420px;
    border-radius: 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    overflow: hidden;
    animation: fadeUp 0.6s ease;
}

/* Header */
.profile-header {
    text-align: center;
    padding: 40px 30px;
    border-bottom: 1px solid #eee;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #927a1b, #b89c2e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.profile-name {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}

.profile-email {
    font-size: 14px;
    color: #777;
}

/* Acciones */
.profile-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.profile-action {
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: #333;
    border-top: 1px solid #eee;
    border-right: 1px solid #eee;
    transition: all 0.3s ease;
}

.profile-action:nth-child(2n) {
    border-right: none;
}

.profile-action i {
    font-size: 20px;
    margin-bottom: 10px;
    display: block;
    color: #927a1b;
}

.profile-action span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.profile-action:hover {
    background-color: rgba(146, 122, 27, 0.08);
}

/* Animación */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .profile-card {
        max-width: 100%;
    }

    .profile-name {
        font-size: 22px;
    }

    .profile-action {
        padding: 25px 15px;
    }
}
/* ========== FIN PERFIL ========== */


/* ========== FORM PERFIL ========== */
.profile-form {
    padding: 30px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 10px 4px;
    font-size: 15px;
    background: transparent;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-bottom-color: #927a1b;
}

.profile-save-btn {
    width: 100%;
    margin-top: 15px;
    padding: 14px;
    border: none;
    background: linear-gradient(135deg, #927a1b, #b89c2e);
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-save-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.profile-back-btn {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 14px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #927a1b;
    background: transparent;
    color: #927a1b;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.profile-back-btn:hover {
    background: linear-gradient(135deg, #927a1b, #b89c2e);
    color: white;
    transform: translateY(-2px);
}


/* Responsive */
@media (max-width: 480px) {
    .profile-form {
        padding: 25px 20px;
    }
}

.address-card {
    border: 1px solid #eee;
    border-radius: 14px;
    background: #fff;
    transition: all .25s ease;
}

.address-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.address-card-body {
    padding: 20px;
}

/* ========== HERO ESTÁTICO - SOLO IMAGEN ========== */
.hero-static {
    width: 100%;
    height: 500px; /* Altura perfecta */
    margin: 0 0 40px 0;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

/* SIN OVERLAY, SIN TEXTO, SIN BOTONES */
.hero-overlay {
    display: none;
}

.hero-content {
    display: none;
}

.hero-title {
    display: none;
}

.hero-subtitle {
    display: none;
}

.hero-btn {
    display: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-static {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-static {
        height: 250px;
    }
}