/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    background-color: #2E5BBA;
    color: white;
    padding: 15px 0;
    text-align: center;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 40px;
}

.logo-img {
    max-height: 50px;
    width: auto;
}

/* Main content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    flex: 1;
}

.main-content h1 {
    color: #2E5BBA;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-content > p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Sección de descuento */
.offer-section {
    margin: 40px 0;
    border-radius: 10px;
    text-align: center;
}

.offer-section h2 {
    color: #2E5BBA;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: normal;
}

.discount-number {
    color: #2E5BBA;
    font-size: 4rem;
    font-weight: bold;
    margin: 10px 0;
    line-height: 1;
}

.percent-symbol {
    font-size: 2rem;
    vertical-align: top;
}

.discount-text {
    color: #2E5BBA;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: normal;
}

.disclaimer {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

/* Brand grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    margin: 40px auto;
    max-width: 1800px;
    padding: 0 20px;
    justify-content: center;
}

.brand-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    width: 240px;
    height: 401px;
    min-height: 401px;
    margin: 0 auto;
    aspect-ratio: 320/535;
}

.brand-card:hover {
    transform: translateY(-5px);
}

.brand-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    min-height: 250px;
    object-position: center;
}

.brand-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

/* Store info */
.store-info {
    margin: 30px 0;
    color: #666;
    font-size: 0.9rem;
}

.store-info p {
    margin-bottom: 5px;
}

/* Footer */
.footer {
    background-color: #1a365d;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}

.footer a {
    color: #87CEEB;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
/* Resolución específica 1920x1080 - Full HD */
@media (min-width: 1920px) {
    .brands-grid {
        max-width: 1800px;
        gap: 30px;
        grid-template-columns: repeat(7, 1fr);
    }
    
    .brand-card {
        width: 340px;
        height: 568px;
        min-height: 568px;
    }
    
    .brand-card img {
        min-height: 280px;
    }
}

/* Pantallas muy grandes (mayor a 1600px pero menor a 1920px) */
@media (min-width: 1600px) and (max-width: 1919px) {
    .brands-grid {
        max-width: 1600px;
        gap: 25px;
    }
    
    .brand-card {
        width: 330px;
        height: 551px;
        min-height: 551px;
    }
}

/* Pantallas grandes */
@media (max-width: 1599px) {
    .brands-grid {
        grid-template-columns: repeat(6, 1fr);
        max-width: 1400px;
    }
    
    .brand-card {
        width: 320px;
        height: 535px;
        min-height: 535px;
    }
}

@media (max-width: 1400px) {
    .brands-grid {
        grid-template-columns: repeat(6, 1fr);
        max-width: 1200px;
    }
    
    .brand-card {
        width: 300px;
        height: 501px;
        min-height: 501px;
    }
}

@media (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(5, 1fr);
        max-width: 1000px;
    }
    
    .brand-card {
        width: 280px;
        height: 468px;
        min-height: 468px;
    }
}

@media (max-width: 1000px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 800px;
    }
    
    .brand-card {
        width: 260px;
        height: 434px;
        min-height: 434px;
    }
}

@media (max-width: 900px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 600px;
    }
    
    .brand-card {
        width: 240px;
        height: 401px;
        min-height: 401px;
    }
}

/* Responsive Design */
/* Resolución específica 2560x1440 - Optimizado para mostrar 7 cards */
@media (min-width: 2560px) {
    .header-content {
        max-width: 2400px;
        height: 60px;
    }
    
    .logo-img {
        max-height: 70px;
    }
    
    .main-content {
        max-width: 2400px;
        padding: 60px 30px;
    }
    
    .main-content h1 {
        font-size: 3.5rem;
        margin-bottom: 15px;
    }
    
    .main-content > p {
        font-size: 1.4rem;
        margin-bottom: 40px;
    }
    
    .offer-section {
        margin: 60px 0;
    }
    
    .offer-section h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .discount-number {
        font-size: 5.5rem;
        margin: 15px 0;
    }
    
    .percent-symbol {
        font-size: 2.8rem;
    }
    
    .discount-text {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .disclaimer {
        font-size: 1.1rem;
    }
    
    .logo-descto {
        width: 500px;
    }
    
    .logo-desc {
        width: 700px;
        margin-top: -60px;
    }
    
    .brands-grid {
        max-width: 2400px;
        gap: 25px;
        grid-template-columns: repeat(7, 1fr);
        padding: 0 30px;
        margin: 60px auto;
    }
    
    .brand-card {
        width: 320px;
        height: 535px;
        min-height: 535px;
    }
    
    .brand-card img {
        min-height: 260px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* Media query para zoom 80% */
@media (min-width: 1920px) and (max-width: 2559px) and (min-resolution: 1.44dppx) {
    .header-content {
        max-width: 1800px;
        height: 50px;
    }
    
    .logo-img {
        max-height: 60px;
    }
    
    .main-content {
        max-width: 1800px;
        padding: 50px 25px;
    }
    
    .main-content h1 {
        font-size: 3rem;
        margin-bottom: 12px;
    }
    
    .main-content > p {
        font-size: 1.3rem;
        margin-bottom: 35px;
    }
    
    .offer-section {
        margin: 50px 0;
    }
    
    .offer-section h2 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .discount-number {
        font-size: 4.5rem;
        margin: 12px 0;
    }
    
    .percent-symbol {
        font-size: 2.4rem;
    }
    
    .discount-text {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .disclaimer {
        font-size: 1rem;
    }
    
    .logo-descto {
        width: 420px;
    }
    
    .logo-desc {
        width: 620px;
        margin-top: -50px;
    }
    
    .brands-grid {
        max-width: 1880px;
        gap: 18px;
        grid-template-columns: repeat(7, 1fr);
        padding: 0 20px;
        margin: 50px auto;
    }
    
    .brand-card {
        width: 280px;
        height: 468px;
        min-height: 468px;
    }
    
    .brand-card img {
        min-height: 230px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* Media query específico para zoom 90% */
@media (min-width: 1920px) and (max-width: 2559px) and (min-resolution: 1.2dppx) and (max-resolution: 1.43dppx) {
    .header-content {
        max-width: 1750px;
        height: 48px;
    }
    
    .logo-img {
        max-height: 58px;
    }
    
    .main-content {
        max-width: 1750px;
        padding: 45px 22px;
    }
    
    .main-content h1 {
        font-size: 2.8rem;
        margin-bottom: 11px;
    }
    
    .main-content > p {
        font-size: 1.25rem;
        margin-bottom: 32px;
    }
    
    .offer-section {
        margin: 45px 0;
    }
    
    .offer-section h2 {
        font-size: 1.35rem;
        margin-bottom: 11px;
    }
    
    .discount-number {
        font-size: 4.2rem;
        margin: 11px 0;
    }
    
    .percent-symbol {
        font-size: 2.2rem;
    }
    
    .discount-text {
        font-size: 1.25rem;
        margin-bottom: 11px;
    }
    
    .disclaimer {
        font-size: 0.95rem;
    }
    
    .logo-descto {
        width: 390px;
    }
    
    .logo-desc {
        width: 580px;
        margin-top: -45px;
    }
    
    .brands-grid {
        max-width: 1400px;
        gap: 8px;
        grid-template-columns: repeat(7, 1fr);
        padding: 0 30px;
        margin: 45px auto;
    }
    
    .brand-card {
        width: 185px;
        height: 309px;
        min-height: 309px;
    }
    
    .brand-card img {
        min-height: 154px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* Media query específico para zoom 100% */
@media (min-width: 1920px) and (max-width: 2559px) and (min-resolution: 1dppx) and (max-resolution: 1.19dppx) {
    .header-content {
        max-width: 1800px;
        height: 50px;
    }
    
    .logo-img {
        max-height: 60px;
    }
    
    .main-content {
        max-width: 1800px;
        padding: 50px 25px;
    }
    
    .main-content h1 {
        font-size: 3rem;
        margin-bottom: 12px;
    }
    
    .main-content > p {
        font-size: 1.3rem;
        margin-bottom: 35px;
    }
    
    .offer-section {
        margin: 50px 0;
    }
    
    .offer-section h2 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .discount-number {
        font-size: 4.5rem;
        margin: 12px 0;
    }
    
    .percent-symbol {
        font-size: 2.4rem;
    }
    
    .discount-text {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .disclaimer {
        font-size: 1rem;
    }
    
    .logo-descto {
        width: 420px;
    }
    
    .logo-desc {
        width: 620px;
        margin-top: -50px;
    }
    
    .brands-grid {
        max-width: 1800px;
        gap: 15px;
        grid-template-columns: repeat(7, 1fr);
        padding: 0 15px;
        margin: 50px auto;
    }
    
    .brand-card {
        width: 240px;
        height: 401px;
        min-height: 401px;
    }
    
    .brand-card img {
        min-height: 200px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* Pantallas muy grandes (1600px - 1919px) */
@media (min-width: 1600px) and (max-width: 1919px) {
    .header-content {
        max-width: 1500px;
    }
    
    .main-content {
        max-width: 1500px;
    }
    
    .main-content h1 {
        font-size: 2.8rem;
    }
    
    .main-content > p {
        font-size: 1.2rem;
    }
    
    .discount-number {
        font-size: 4.2rem;
    }
    
    .logo-descto {
        width: 380px;
    }
    
    .logo-desc {
        width: 560px;
        margin-top: -45px;
    }
    
    .brands-grid {
        max-width: 1580px;
        gap: 15px;
        grid-template-columns: repeat(7, 1fr);
    }
    
    .brand-card {
        width: 210px;
        height: 351px;
        min-height: 351px;
    }
}

/* Pantallas grandes (1367px - 1599px) */
@media (min-width: 1367px) and (max-width: 1599px) {
    .main-content h1 {
        font-size: 2.6rem;
    }
    
    .discount-number {
        font-size: 4rem;
    }
    
    .logo-descto {
        width: 360px;
    }
    
    .logo-desc {
        width: 530px;
        margin-top: -42px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(6, 1fr);
        max-width: 1350px;
        gap: 15px;
    }
    
    .brand-card {
        width: 200px;
        height: 334px;
        min-height: 334px;
    }
}

/* Resolución específica 1280x720 - Optimizado para mostrar 7 cards */
@media (min-width: 1280px) and (max-width: 1366px) {
    .main-content h1 {
        font-size: 2.4rem;
    }
    
    .main-content > p {
        font-size: 1.05rem;
    }
    
    .discount-number {
        font-size: 3.8rem;
    }
    
    .logo-descto {
        width: 340px;
    }
    
    .logo-desc {
        width: 500px;
        margin-top: -38px;
    }
    
    .brands-grid {
        max-width: 1240px;
        gap: 8px;
        grid-template-columns: repeat(7, 1fr);
        padding: 0 20px;
    }
    
    .brand-card {
        width: 160px;
        height: 267px;
        min-height: 267px;
    }
    
    .brand-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 1279px) {
    .brands-grid {
        grid-template-columns: repeat(5, 1fr);
        max-width: 1200px;
    }
    
    .brand-card {
        width: 220px;
        height: 368px;
        min-height: 368px;
    }
}

@media (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1000px;
    }
    
    .brand-card {
        width: 230px;
        height: 384px;
        min-height: 384px;
    }
}

@media (max-width: 1000px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 800px;
    }
    
    .brand-card {
        width: 240px;
        height: 401px;
        min-height: 401px;
    }
}

@media (max-width: 768px) {
    .main-content h1 {
        font-size: 2rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 500px;
    }
    
    .brand-card {
        width: 220px;
        height: 368px;
        min-height: 368px;
    }
    
    .brand-card img {
        min-height: 200px;
    }
    
    .discount-number {
        font-size: 3rem;
    }
    
    .main-content {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .main-content h1 {
        font-size: 1.5rem;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .brand-card {
        width: 280px;
        height: 468px;
        min-height: 468px;
    }
    
    .brand-card img {
        min-height: 180px;
    }
    
    .discount-number {
        font-size: 2.5rem;
    }
}

/* Clases para imágenes de logo */
.logo-descto {
    width: 355px;
    height: auto;
    max-width: 100%;
}

.logo-desc {
    width: 525px;
    height: auto;
    max-width: 100%;
    margin-top: -40px;
}

/* Ajustes para zoom 90% del navegador */
@media screen and  (max-resolution: 2133px) {
    .header-content {
        max-width: 1080px;
    }
    
    .main-content {
        max-width: 1080px;
        padding: 36px 18px;
    }
    
    .main-content h1 {
        font-size: 2.25rem;
    }
    
    .main-content > p {
        font-size: 0.99rem;
        margin-bottom: 27px;
    }
    
    .offer-section {
        margin: 36px 0;
    }
    
    .offer-section h2 {
        font-size: 1.08rem;
        margin-bottom: 9px;
    }
    
    .discount-number {
        font-size: 3.6rem;
        margin: 9px 0;
    }
    
    .percent-symbol {
        font-size: 1.8rem;
    }
    
    .discount-text {
        font-size: 0.99rem;
        margin-bottom: 9px;
    }
    
    .disclaimer {
        font-size: 0.81rem;
    }
    
    .logo-descto {
        width: 319px;
    }
    
    .logo-desc {
        width: 472px;
        margin-top: -36px;
    }
    
    .brands-grid {
        max-width: 1620px;
        gap: 13px;
        margin: 36px auto;
        padding: 0 18px;
    }
    
    .brand-card {
        width: 270px;
        height: 452px;
        min-height: 452px;
    }
    
    .brand-card img {
        min-height: 180px;
    }
}

/* Ajustes para zoom 80% del navegador */
@media screen and (min-resolution: 120dpi) and (max-resolution: 143dpi) {
    .header-content {
        max-width: 960px;
    }
    
    .main-content {
        max-width: 960px;
        padding: 32px 16px;
    }
    
    .main-content h1 {
        font-size: 2rem;
    }
    
    .main-content > p {
        font-size: 0.88rem;
        margin-bottom: 24px;
    }
    
    .offer-section {
        margin: 32px 0;
    }
    
    .offer-section h2 {
        font-size: 0.96rem;
        margin-bottom: 8px;
    }
    
    .discount-number {
        font-size: 3.2rem;
        margin: 8px 0;
    }
    
    .percent-symbol {
        font-size: 1.6rem;
    }
    
    .discount-text {
        font-size: 0.88rem;
        margin-bottom: 8px;
    }
    
    .disclaimer {
        font-size: 0.72rem;
    }
    
    .logo-descto {
        width: 284px;
    }
    
    .logo-desc {
        width: 420px;
        margin-top: -32px;
    }
    
    .brands-grid {
        max-width: 1440px;
        gap: 12px;
        margin: 32px auto;
        padding: 0 16px;
        grid-template-columns: repeat(6, 1fr);
    }
    
    .brand-card {
        width: 192px;
        height: 321px;
        min-height: 321px;
    }
    
    .brand-card img {
        min-height: 160px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* Ajustes adicionales para zoom 80% en resoluciones altas */
@media screen and (min-resolution: 120dpi) and (min-width: 1920px) {
    .brands-grid {
        grid-template-columns: repeat(7, 1fr);
        max-width: 1680px;
    }
    
    .brand-card {
        width: 275px;
        height: 455px;
        min-height: 455px;
    }
}

/* Ajustes adicionales para zoom 90% en resoluciones altas */
@media screen and (min-resolution: 106dpi) and (max-resolution: 119dpi) and (min-width: 1920px) {
    .brands-grid {
        grid-template-columns: repeat(7, 1fr);
        max-width: 1890px;
    }
    
    .brand-card {
        width: 225px;
        height: 376px;
        min-height: 376px;
    }
}

/* Media query específico para resolución 2133x1021 (90% zoom Chrome) */
@media screen and (min-width: 2133px) and (max-width: 2133px) and (min-height: 1021px) and (max-height: 1021px) {
    .header-content {
        max-width: 2000px;
        height: 50px;
    }
    
    .logo-img {
        max-height: 60px;
    }
    
    .main-content {
        max-width: 2000px;
        padding: 50px 25px;
    }
    
    .main-content h1 {
        font-size: 3rem;
        margin-bottom: 12px;
    }
    
    .main-content > p {
        font-size: 1.3rem;
        margin-bottom: 35px;
    }
    
    .offer-section {
        margin: 50px 0;
    }
    
    .offer-section h2 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .discount-number {
        font-size: 4.5rem;
        margin: 12px 0;
    }
    
    .percent-symbol {
        font-size: 2.4rem;
    }
    
    .discount-text {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .disclaimer {
        font-size: 1rem;
    }
    
    .logo-descto {
        width: 420px;
    }
    
    .logo-desc {
        width: 620px;
        margin-top: -50px;
    }
    
    .brands-grid {
        max-width: 1950px;
        gap: 12px;
        grid-template-columns: repeat(7, 1fr);
        padding: 0 40px;
        margin: 50px auto;
    }
    
    .brand-card {
        width: 260px;
        height: 435px;
        min-height: 435px;
    }
    
    .brand-card img {
        min-height: 217px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* Resolución específica 2560x1440 - 75% zoom */
@media (min-width: 2560px) {
    .brands-grid {
        max-width: 2400px;
        gap: 25px;
        grid-template-columns: repeat(7, 1fr);
        padding: 0 30px;
    }
    
    .brand-card {
        width: 320px;
        height: 535px;
        min-height: 535px;
    }
    
    .brand-card img {
        min-height: 260px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}



@media (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1000px;
    }
    
    .brand-card {
        width: 230px;
        height: 384px;
        min-height: 384px;
    }
}

@media (max-width: 1000px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 800px;
    }
    
    .brand-card {
        width: 240px;
        height: 401px;
        min-height: 401px;
    }
}

@media (max-width: 768px) {
    .main-content h1 {
        font-size: 2rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 500px;
    }
    
    .brand-card {
        width: 220px;
        height: 368px;
        min-height: 368px;
    }
    
    .brand-card img {
        min-height: 200px;
    }
    
    .discount-number {
        font-size: 3rem;
    }
    
    .main-content {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .main-content h1 {
        font-size: 1.5rem;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .brand-card {
        width: 280px;
        height: 468px;
        min-height: 468px;
    }
    
    .brand-card img {
        min-height: 180px;
    }
    
    .discount-number {
        font-size: 2.5rem;
    }
}

/* Clases para imágenes de logo */
.logo-descto {
    width: 355px;
    height: auto;
    max-width: 100%;
}

.logo-desc {
    width: 525px;
    height: auto;
    max-width: 100%;
    margin-top: -40px;
}

/* Ajustes para zoom 90% del navegador */
@media screen and (min-resolution: 106dpi) and (max-resolution: 119dpi) {
    .header-content {
        max-width: 1080px;
    }
    
    .main-content {
        max-width: 1080px;
        padding: 36px 18px;
    }
    
    .main-content h1 {
        font-size: 2.25rem;
    }
    
    .main-content > p {
        font-size: 0.99rem;
        margin-bottom: 27px;
    }
    
    .offer-section {
        margin: 36px 0;
    }
    
    .offer-section h2 {
        font-size: 1.08rem;
        margin-bottom: 9px;
    }
    
    .discount-number {
        font-size: 3.6rem;
        margin: 9px 0;
    }
    
    .percent-symbol {
        font-size: 1.8rem;
    }
    
    .discount-text {
        font-size: 0.99rem;
        margin-bottom: 9px;
    }
    
    .disclaimer {
        font-size: 0.81rem;
    }
    
    .logo-descto {
        width: 319px;
    }
    
    .logo-desc {
        width: 472px;
        margin-top: -36px;
    }
    
    .brands-grid {
        max-width: 1620px;
        gap: 13px;
        margin: 36px auto;
        padding: 0 18px;
    }
    
    .brand-card {
        width: 216px;
        height: 361px;
        min-height: 361px;
    }
    
    .brand-card img {
        min-height: 180px;
    }
}

/* Ajustes para zoom 80% del navegador */
@media screen and (min-resolution: 120dpi) and (max-resolution: 143dpi) {
    .header-content {
        max-width: 960px;
    }
    
    .main-content {
        max-width: 960px;
        padding: 32px 16px;
    }
    
    .main-content h1 {
        font-size: 2rem;
    }
    
    .main-content > p {
        font-size: 0.88rem;
        margin-bottom: 24px;
    }
    
    .offer-section {
        margin: 32px 0;
    }
    
    .offer-section h2 {
        font-size: 0.96rem;
        margin-bottom: 8px;
    }
    
    .discount-number {
        font-size: 3.2rem;
        margin: 8px 0;
    }
    
    .percent-symbol {
        font-size: 1.6rem;
    }
    
    .discount-text {
        font-size: 0.88rem;
        margin-bottom: 8px;
    }
    
    .disclaimer {
        font-size: 0.72rem;
    }
    
    .logo-descto {
        width: 284px;
    }
    
    .logo-desc {
        width: 420px;
        margin-top: -32px;
    }
    
    .brands-grid {
        max-width: 1440px;
        gap: 12px;
        margin: 32px auto;
        padding: 0 16px;
        grid-template-columns: repeat(6, 1fr);
    }
    
    .brand-card {
        width: 192px;
        height: 321px;
        min-height: 321px;
    }
    
    .brand-card img {
        min-height: 160px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* Ajustes adicionales para zoom 80% en resoluciones altas */
@media screen and (min-resolution: 120dpi) and (min-width: 1920px) {
    .brands-grid {
        grid-template-columns: repeat(7, 1fr);
        max-width: 1680px;
    }
    
    .brand-card {
        width: 200px;
        height: 334px;
        min-height: 334px;
    }
}

/* Ajustes adicionales para zoom 90% en resoluciones altas */
@media screen and (min-resolution: 106dpi) and (max-resolution: 119dpi) and (min-width: 1920px) {
    .brands-grid {
        grid-template-columns: repeat(7, 1fr);
        max-width: 1890px;
    }
    
    .brand-card {
        width: 225px;
        height: 376px;
        min-height: 376px;
    }
}