:root {
    --text-main: #111111;
    --text-secondary: #6e6e73;
    --bg-body: #fbfbfd;
    --bg-card: #ffffff;
    --accent: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    /* Clave para que el texto se vea nítido y "suave" en Mac/iOS */
    -moz-osx-font-smoothing: grayscale;
}

html {
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-gutter: stable;
}

body {
    font-family: 'Inter', sans-serif;
    /* Cambio de fuente principal */
    background: var(--bg-body);
    color: var(--text-main);
    line-height: 1.5;
    min-height: 101vh;
    /* Force scrollbar to appear */
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Header Minimalista */
header {
    background: rgba(251, 251, 253, 0.8);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.03em;
    /* Kerning ajustado */
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.user-actions {
    display: flex;
    gap: 30px;
}

.user-actions a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 0.9em;
    margin-right: 8px;
}

.sale-price {
    color: #d32f2f;
    /* Red for sale */
    font-weight: 600;
}

/* Mobile Header */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        gap: 20px;
    }

    .logo {
        margin-bottom: 5px;
    }
}

/* Promotion Banner */
.promotion-banner {
    padding: 60px 0;
    background: var(--bg-body);
    text-align: center;
}

.promotion-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .promotion-banner {
        padding: 40px 0;
    }
}

/* Product Grid */
.products-section {
    padding: 80px 0;
}

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

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.product-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.3s ease;
    position: relative;
    /* Added for badge positioning */
}

.badge-black-friday {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #000;
    color: #fff;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 10;
}

.product-card:hover {
    opacity: 0.8;
    transform: none;
    /* Quitamos el movimiento vertical para ser más minimalista */
}

.product-image {
    width: 100%;
    height: 380px;
    background: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 4px;
}

.product-image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Truco para que el fondo de la imagen se funda */
}

.product-info {
    padding: 0;
}

.grid-product-name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: -0.01em;
}

.grid-product-price {
    font-size: 15px;
    color: var(--text-secondary);
}

/* --- AGE VERIFICATION MODAL --- */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(251, 251, 253, 0.98);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.age-modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.age-modal-content {
    background: #fff;
    padding: 60px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 480px) {
    .age-modal-content {
        padding: 40px 20px;
    }
}

.age-modal-logo {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.age-modal-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    color: var(--text-main);
}

.age-modal-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 50px;
    padding: 0 20px;
}

.age-modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-direction: column;
}

.btn-age-primary {
    background: #1a1a1a;
    color: #fff;
    border: none;
    height: 50px;
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-age-primary:hover {
    background: #000;
}

.btn-age-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    height: 40px;
    width: 100%;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: color 0.3s;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.btn-age-secondary:hover {
    color: var(--text-main);
}

/* --- ESTILOS DEL MODAL (ESTILO TIENDA IMAGEN) --- */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    /* Fondo blanco puro como la imagen */
    z-index: 1000;
    overflow-y: auto;
}

.modal.active {
    display: block;
}

.modal-content {
    background: #fff;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    padding: 80px 40px;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 60px 20px;
    }

    .modal-close {
        top: 20px;
        right: 20px;
        font-size: 32px;
    }

    .detail-description {
        max-width: 100%;
        /* Asegura que no exceda el ancho en móvil */
        width: 100%;
        text-align: left;
        /* Mejor legibilidad en móvil */
    }

    .detail-text-col {
        width: 100%;
        overflow-x: hidden;
        /* Previene scroll horizontal indeseado */
    }
}

.modal-close {
    position: fixed;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    color: #1a1a1a;
    z-index: 101;
    font-weight: 200;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 45% 55%;
    /* La imagen ocupa más espacio a la derecha */
    gap: 80px;
    align-items: flex-start;
}

/* Columna Izquierda (Texto) */
.detail-text-col {
    padding-top: 20px;
}

.detail-brand {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: -0.03em;
}

.detail-title {
    font-size: 64px;
    /* Tamaño gigante como en la imagen */
    font-weight: 500;
    /* No muy grueso */
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
    color: #000;
}

.detail-code {
    font-size: 12px;
    color: #86868b;
    margin-bottom: 30px;
}

.detail-price {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

.detail-description {
    font-size: 13px;
    line-height: 1.7;
    text-transform: uppercase;
    /* Estilo muy suizo/minimalista */
    color: #444;
    max-width: 500px;
    margin-bottom: 60px;
    text-align: justify;
}

/* Tabla de especificaciones limpia */
.spec-list {
    margin-bottom: 60px;
}

.spec-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    margin-bottom: 20px;
    font-size: 13px;
}

.spec-label {
    text-transform: uppercase;
    color: #666;
    font-weight: 500;
}

.spec-value {
    color: #111;
}

/* Controles de compra */
.purchase-area {
    display: flex;
    align-items: center;
    gap: 0;
    /* Pegados como en la imagen */
    margin-top: 40px;
    border-top: 1px solid #e5e5e5;
    padding-top: 40px;
    width: fit-content;
}

.qty-wrapper {
    display: flex;
    align-items: center;
    background: #f5f5f7;
    height: 56px;
}

.qty-btn {
    width: 40px;
    height: 100%;
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    color: #111;
}

.qty-display {
    width: 30px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border: none;
    background: transparent;
}

.btn-add-large {
    height: 56px;
    padding: 0 40px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    margin-left: 10px;
}

.btn-add-large:hover {
    background: #000;
}

/* Columna Derecha (Imagen) */
.detail-image-col {
    position: sticky;
    top: 40px;
}

.big-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f9f9f9;
    /* Gris muy suave de fondo */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.big-image-container img {
    width: 70%;
    height: auto;
    max-height: 80%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.thumbs {
    display: flex;
    gap: 15px;
}

.thumb {
    width: 80px;
    height: 80px;
    background: #f9f9f9;
    padding: 10px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.thumb.active,
.thumb:hover {
    opacity: 1;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Responsive */
@media (max-width: 900px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-image-col {
        order: -1;
        /* Imagen primero en móvil */
        position: static;
    }

    .detail-title {
        font-size: 42px;
    }
}

/* --- CART DRAWER --- */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
    .cart-drawer {
        width: 100%;
    }
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    padding: 25px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.cart-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #111;
    padding: 5px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
}

.cart-empty-msg {
    text-align: center;
    color: #999;
    margin-top: 50px;
    font-size: 14px;
}

.cart-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f5f5f7;
}

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

.cart-item-img {
    width: 80px;
    height: 80px;
    background: #f5f5f7;
    object-fit: contain;
    mix-blend-mode: multiply;
    padding: 5px;
    border-radius: 4px;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 500;
    color: #111;
}

.cart-item-price {
    font-size: 14px;
    font-weight: 600;
}

.cart-item-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-remove {
    font-size: 11px;
    color: #999;
    text-decoration: underline;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.cart-item-remove:hover {
    color: #d00;
}

.cart-footer {
    padding: 30px 25px;
    border-top: 1px solid #f0f0f0;
    background: #fbfbfd;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.btn-checkout {
    width: 100%;
    height: 56px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-checkout:hover {
    background: #000;
}





.logo img {
    height: 32px;
    width: auto;
    /* Esto es la magia: */
    filter: grayscale(100%) contrast(120%);
    /* grayscale: quita el color rojo.
contrast: asegura que el gris resultante se vea nítido. */

    mix-blend-mode: multiply;
    /* Para fundir el fondo blanco si lo tiene */
    /* Un toque sutil para que no sea negro absoluto */
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.filter-btn {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--text-main);
    border-bottom-color: var(--text-main);
}

/* Color Selection */
.color-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.color-circles-row {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    /* Permite que los círculos bajen de línea si no caben */
}

.color-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.color-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.color-circle::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}

.color-circle.active::after {
    border-color: #000;
}

.color-circle:hover {
    transform: scale(1.1);
}

/* Reservation Modal Styles */
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.form-group input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    resize: vertical;
    min-height: 80px;
}

.form-group textarea::placeholder {
    color: #999;
}

.btn-submit-reservation {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
}

.btn-submit-reservation:hover {
    background: #333;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-details div {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
footer {
    background: var(--bg-body);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 60px 0 40px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: -0.03em;
}

.footer-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 350px;
}

.footer-section h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: var(--text-main);
}

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

.footer-links a {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 30px 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px 0;
        text-align: center;
    }
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-secondary);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    font-size: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}


/* Blog Styles */
.blog-header {
    padding: 80px 0 40px;
    text-align: center;
}

.blog-title {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.blog-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.blog-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.3s ease;
}

.blog-card:hover {
    opacity: 0.8;
}

.blog-image {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #f5f5f7;
    border-radius: 4px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-meta {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.blog-card-title {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-title {
        font-size: 36px;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-title {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-bottom: 30px;
    line-height: 1.1;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: -0.01em;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.about-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        order: -1;
    }

    .about-title {
        font-size: 36px;
    }
}

/* Empresa Section */
.empresa-section {
    padding: 100px 0;
}

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

.empresa-title {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-bottom: 50px;
    line-height: 1.1;
}

.empresa-text {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 60px;
}

.empresa-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.empresa-text strong {
    color: var(--text-main);
    font-weight: 600;
}

.empresa-thanks {
    font-style: italic;
    text-align: center;
    margin-top: 40px !important;
    font-size: 17px !important;
}

.empresa-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    background: #f5f5f7;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.empresa-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

@media (max-width: 768px) {
    .empresa-title {
        font-size: 36px;
    }

    .empresa-text p {
        font-size: 15px;
    }
}