:root {
    --primary: #111111;
    --accent: #FFA53F;
    --background: #F8F9FA;
    --white: #FFFFFF;
    --text: #333333;
    --border: #E5E7EB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background);
    color: var(--text);
}

section {
    padding: 80px 0;
}

/*HOME - HERO SECTION*/

#hero {
    padding: 40px 0;
}

.hero-container {
    background: #111;
    border-radius: 20px;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 50px 60px;
    gap: 40px;
}

/* Contenido del Hero */
.hero-content {
    flex: 1;
    max-width: 420px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Badge superior */
.hero-badge {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
}

/* Título principal */
.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1;
    margin: 20px 0;
}

.hero-content span {
    color: var(--accent);
}

/* Texto descriptivo */
.hero-content p {
    color: #d1d5db;
    max-width: 500px;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Botones del Hero */
.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 12px;
}

/* Imagen principal */
.hero-image {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 750px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/*HOME - BENEFICIOS */

#beneficios {
    padding: 20px 0 40px;
}

.beneficios-container {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.beneficio-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    min-width: 0;
    border-right: 1px solid var(--border);
}

.beneficio-item div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.beneficio-item:last-child {
    border-right: none;
}

.beneficio-item i {
    font-size: 2.2rem;
    color: var(--accent);
}

.beneficio-item h6 {
    margin: 0;
    font-weight: 600;
    font-size: .95rem;
    margin-bottom: 2px;
    line-height: 1.2;
}

.beneficio-item p {
    margin: 0;
    font-size: .85rem;
    color: #6b7280;
}

/* HOME - CATEGORÍAS */

#categorias {
    padding: 20px 0 40px;
}

/* Encabezado de sección */
.section-header {
    margin-bottom: 20px;
}

.section-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.section-header p {
    color: #6b7280;
    margin-top: 5px;
}

/* Grid de categorías */
.categorias-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

/* Tarjeta de categoría */
.categoria-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 15px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .3s ease;
    cursor: pointer;
}

.categoria-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
}

.categoria-card i {
    font-size: 1.8rem;
    color: var(--accent);
}

.categoria-card span {
    font-weight: 500;
}

/* HOME - BANNER PROMOCIONAL*/

.promo-banner {
    background: linear-gradient(135deg,
            #111111,
            #1f2937);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    overflow: hidden;
}

.promo-badge {
    display: inline-block;
    background: rgba(255, 165, 63, .15);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.promo-banner h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.promo-banner p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #d1d5db;
}

/* HOME - NEWSLETTER */

.newsletter-container {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
}

.newsletter-badge {
    display: inline-block;
    background: rgba(255, 165, 63, .15);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.newsletter-content p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #6b7280;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--accent);
}

.newsletter-form button {
    padding: 15px 25px;
}

/* HOME - RESPONSIVE TABLET */

@media (max-width:992px) {

    .hero-container {
        padding: 40px;
        gap: 30px;
    }

    .hero-content {
        max-width: 350px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-image img {
        height: 350px;
    }

    .beneficios-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .beneficio-item:nth-child(2) {
        border-right: none;
    }

    .categorias-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* HOME - RESPONSIVE MÓVIL */

@media (max-width:768px) {


    #hero {
        padding: 20px 0;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        gap: 30px;
    }

    .hero-content {
        flex: none;
        width: 100%;
    }

    .hero-content p {
        max-width: 100%;
    }

    .hero-image {
        flex: none;
        width: 100%;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .beneficios-container {
        grid-template-columns: 1fr;
    }

    .beneficio-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .beneficio-item:last-child {
        border-bottom: none;
    }

    .categorias-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-banner {
        padding: 50px 25px;
    }

    .promo-banner h2 {
        font-size: 2rem;
    }

    .newsletter-content h2 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/*HOME - RESPONSIVE TELÉFONOS PEQUEÑOS */

@media (max-width:480px) {


    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: .95rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

header {
    background: #000000;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 60px;
    gap: 100px;
}

.logo img {
    margin-top: 20px;
    height: 90px;
}

.inputBuscar {
    flex: 1;
    max-width: 700px;
    display: flex;
}

.inputBuscar input {
    width: 100%;
    height: 42px;
    border: none;
    outline: none;
    padding: 0 15px;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
}

.inputBuscar button {
    width: 50px;
    border: none;
    background: #ff8c00;
    color: white;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    font-size: 16px;
    transition: .3s;
}

.inputBuscar button:hover {
    background: #ffa726;
}

.iniciarSesion {
    display: flex;
    align-items: center;
    gap: 25px;
}

.iniciarSesion a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    transition: .3s;
}

.iniciarSesion a:hover {
    color: #ff8c00;
}

.carrito {
    position: relative;
}

.cuentaCarrito {
    position: absolute;
    top: -8px;
    right: -10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ff8c00;
    color: white;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.carrito-total {
    margin-top: 10px;
    padding: 10px;
    border-top: 1px solid #eee;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#carrito-total {
    background: orange;
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

nav {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li a {
    display: block;
    padding: 8px 30px;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: .3s;
}

nav ul li a:hover {
    color: #ff8c00;
}

nav ul li a.activo {
    color: #ff8c00;
    font-weight: 600;
}

.desplegableCarrito {
    position: relative;
    display: inline-block;
}

.carrito-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 14px;
}

.carrito-dropdown {
    position: absolute;
    right: 0;
    top: 40px;
    width: 320px;
    background: white;
    color: black;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    padding: 10px;
    display: none;
    z-index: 1000;
}

.desplegableCarrito.active .carrito-dropdown {
    display: block;
}

.carrito-item {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.carrito-item button {
    background: red;
    color: white;
    border: none;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 5px;
}

.fila {
    font-weight: bold;
}

.btn-agregar {
    background-color: #ffa53f;
    border: none;
    color: #000;
    border-radius: 10px;
    padding: 10px 20px;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
    font-weight: bold;
}

.seleccion-producto:hover {
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn-agregar:hover {
    background-color: #ffc890;
    transform: translateY(-2px);
}

.acomodar {
    max-height: 300px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.material-symbols-outlined {
    font-size: 18px;
}

.card {
    position: relative;
}

.btn-favorito {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.btn-favorito .material-symbols-outlined {
    color: #bdbdbd;
    font-size: 22px;
}

.btn-favorito:hover .material-symbols-outlined {
    color: #ff4d6d;
}

.footer {
    background: #000;
    color: #fff;
    margin-top: 80px;
    border-top: 3px solid #ff8c00;
}

.contenedorFooter {
    max-width: 1400px;
    margin: auto;
    padding: 50px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.seccionFooter h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.lineaDecorativa {
    width: 100%;
    height: 3px;
    background: #ff8c00;
    margin-bottom: 20px;
    border-radius: 20px;
}

.seccionFooter p {
    color: #cfcfcf;
    line-height: 1.8;
    font-size: .95rem;
}

.seccionFooter ul {
    list-style: none;
}

.seccionFooter ul li {
    margin-bottom: 12px;
}

.seccionFooter ul li a {
    color: #cfcfcf;
    text-decoration: none;
    transition: .3s;
}

.seccionFooter ul li a:hover{
    color:#ff8c00;
    padding-left: 5px;
}

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

.redesSociales a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .3s;
}

.redesSociales a i {
    width: 25px;
    font-size: 1.2rem;
}

.redesSociales a:hover {
    color: #ff8c00;
    transform: translateX(5px);
}

.metodosPago {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.metodosPago i {
    font-size: 2.8rem;
    color: #fff;
    transition: .3s;
}

.metodosPago i:hover {
    color: #ff8c00;
    transform: scale(1.1);
}

.PSE {
    background: #111;
    border: 2px solid #ff8c00;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    transition: .3s;
}

.PSE:hover {
    background: #ff8c00;
}

.footerInferior {
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding: 20px;
    text-align: center;
}

.footerInferior p {
    color: #bdbdbd;
    margin: 6px 0;
    font-size: .9rem;
}

.footerInferior i {
    color: #ff8c00;
}

@media(max-width:768px) {

    .contenedorFooter {
        grid-template-columns: 1fr;
        padding: 40px 25px;
    }

    .metodosPago {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contenedorFooter {
        grid-template-columns: 1fr;
        padding: 40px 25px;
    }

    .metodosPago {
        justify-content: center;
    }
}

body {
    font-family: Poppins, sans-serif;
    background: #f5f5f5;
}

.page {
    background: #fff;
}

.hero-qs {
    background: #111;
    padding: 50px 32px;
    display: flex;
    align-items: center;
    gap: 36px;
}

.hero-text {
    flex: 1;
    margin: 20px;

}

.hero-badge {
    display: inline-block;
    background: #F5A623;
    color: #111;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.hero-h1 {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px;
}

.hero-h1 span {
    color: #F5A623;
    max-width: 700px;

}

.hero-sub {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
    max-width: 380px;
}


.hero-img-box img {
    width: 400px;
    height: auto;
}

.hero-img-box i {
    font-size: 60px;
    color: #444;
}

.stats-bar {
    background: #F5A623;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    padding: 18px 0;
}

.stat-item {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-size: 24px;
    font-weight: 700;
    color: #111;
}

.stat-lbl {
    font-size: 12px;
    color: #6a4000;
    margin-top: 2px;
}

.section {
    padding: 40px 32px;
    margin: 20px;

}

.section-alt {
    padding: 40px 32px;
    background: #f9f9f9;
}

.section-tag {
    font-size: 12px;
    font-weight: 600;
    color: #F5A623;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;

}

.section-h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.section-p {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.mv-card {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
}

.mv-card i {
    font-size: 26px;
    color: #F5A623;
    margin-bottom: 10px;
    display: block;
}

.mv-title {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
}

.mv-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.65;
}


.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.val-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.val-icon {
    width: 48px;
    height: 48px;
    background: #F5A623;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.val-icon i {
    font-size: 24px;
    color: #111;
}

.val-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
}

.val-desc {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
}


.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.team-card {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background: #fff;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.avatar span {
    font-size: 18px;
    font-weight: 700;
    color: #F5A623;
}

.team-name {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
}

.team-role {
    font-size: 12px;
    color: #888;
}


.cta-band {
    background: #111;
    padding: 48px 32px;
    text-align: center;
}

.cta-h {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.cta-h span {
    color: #F5A623;
}

.cta-sub {
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-main {
    background: #F5A623;
    color: #111;
    border: none;
    padding: 12px 28px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-main:hover {
    background: #e09610;
}

.btn-out {
    background: transparent;
    color: #F5A623;
    border: 1.5px solid #F5A623;
    padding: 12px 28px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-out:hover {
    background: rgba(245, 166, 35, 0.1);
}

.texto-color{
    color: #FFA53F;
}

.fondo-color-card{
    background-color: #BDBDBD;
}

.btn-color-1{
    background-color: #FFA53F;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-color-1:hover{
    background-color: #E07B00;
    color: #fff;
    transform: translateY(-1px);
}
.form-control:focus, .form-select:focus {
    border-color: #FFA53F !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.15) !important;
}