/* =========================================
   RESET BÁSICO
   ========================================= */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
}

/* =========================================
   HEADER NEGRO (Fijo, solo escritorio)
   ========================================= */
.main-header {
    background-color: #000000;
    color: #ffffff;
    height: 50px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 16px;
}

.header-container {
    display: flex;
    gap: 30px;
    padding-right: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    font-size: 18px;
    color: #ffffff;
}

/* =========================================
   SECCIÓN LOGO
   ========================================= */
.logo-section {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #ffffff;
    box-sizing: border-box;
    padding: 0 20px;
}

.line {
    flex: 1;
    height: 2px;
    background-color: #000000;
}

.logo {
    max-height: 50px;
    margin: 0 20px;
    object-fit: contain;
}

/* =========================================
   SECCIÓN HERO
   ========================================= */
.hero-section {
    background-image: url('https://landing.bogotanadebaterias.com/imagenes/hero_dsk.png');
    background-size: cover;
    background-position: left; 
    background-repeat: no-repeat;
    height: 540px; 
    display: flex;
    align-items: center;
}

.hero-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end; 
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-content {
    width: 100%;
    max-width: 500px; 
    text-align: left; 
}

/* --- Banner Inclinado --- */
.badge-skew {
    background-color: #ff6a00;
    display: inline-block;
    padding: 0 35px;       
    transform: skewX(-15deg); 
    margin-top: 15px;      
    margin-bottom: 25px;   
    margin-left: 10px;     
}

.badge-text {
    display: block;
    transform: skewX(15deg); 
    color: #ffffff;
    font-size: 38px;       /* <-- Ajuste: Texto más pequeño (antes 45px) */
    font-weight: 600;      
    line-height: 0.95;     
    margin-top: -12px;     
    margin-bottom: -10px;  
    text-align: center;    /* <-- Ajuste: Texto centrado dentro del bloque naranja */
}

/* --- Textos --- */
.hero-title {
    color: #ffffff;
    font-size: 40px;       
    font-weight: 600;      
    line-height: 1.1;
    margin: 0 0 15px 0;
}

.hero-subtitle {
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 25px 0;
}

.hero-subtitle strong {
    font-size: 35px;       
    font-weight: 600;
}

.subtitle-location {
    font-family: 'Open Sans', sans-serif; 
    font-size: 23px;                      
}

/* --- Botones --- */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px; 
    width: 70%; /* <-- Ajuste: Solicitado al 70% */
}

.btn {
    display: flex;
    justify-content: center; 
    align-items: center;
    padding: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: filter 0.3s ease;
}

.btn:hover {
    filter: brightness(1.1);
}

.btn i {
    margin-right: 10px;
    font-size: 20px;
}

.btn-wpp {
    background-color: #38df64; 
    color: #000000; 
}

.btn-call {
    background-color: #ff7e00; 
    color: #ffffff;
}

.btn-review {
    background-color: #fcd015; 
    color: #ffffff;
}

/* =========================================
   MEDIA QUERIES (Responsividad)
   ========================================= */

/* Computadoras (1024px o más) */
@media (min-width: 1024px) {
    .logo-section {
        margin-top: 50px; 
    }
}

/* Celulares y Tablets (1023px o menos) */
@media (max-width: 1023px) {
    .main-header {
        display: none; 
    }
    
    .logo-section {
        margin-top: 0; 
    }

    .hero-container {
        justify-content: center; 
    }
    
    .hero-section {
        background-position: left center; 
    }

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

    .badge-skew { 
        margin-left: 0;
    }

    /* Ajuste de tamaños para móvil */
    .badge-text { 
        font-size: 28px; /* Ajuste proporcional para móvil */
        margin-top: -8px;  
        margin-bottom: -6px;
    }
    
    .hero-title { font-size: 32px; }
    .hero-subtitle strong { font-size: 28px; }
    .subtitle-location { font-size: 18px; }
    
    .hero-buttons {
        width: 100%; /* En celulares es mejor que ocupen el 100% o el 90% para que se puedan tocar fácil */
        margin: 0 auto;
    }
}