/* ============================================
   STYLES UNIFICADOS - SALSAS MICHELERA
   ============================================ */

:root {
    --primary: #e6223f;
    --secondary: rgb(245, 215, 117);
    --accent: #ffdd88;
    --text: var(--primary);
    --white: #fff;
    --black: #000;
    --font-main: 'Montserrat', sans-serif;
    --font-alt: 'Lato', sans-serif;
    --radius: 12px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --max-width: 1400px;
    
    /* Tamaños de texto normalizados - DESKTOP */
    --title-size: 2.8rem;
    --subtitle-size: 1.7rem;
    --text-size: 1.3rem;
    --button-size: 1.4rem;
    
    /* Tamaños de texto normalizados - MOBILE (se activan en media queries) */
    --title-size-mobile: 2.2rem;
    --subtitle-size-mobile: 1.5rem;
    --text-size-mobile: 1.3rem;
    --button-size-mobile: 1.4rem;
    
    /* Tamaños de texto normalizados - MOBILE PEQUEÑO */
    --title-size-mobile-small: 1.8rem;
    --subtitle-size-mobile-small: 1.4rem;
    --text-size-mobile-small: 1.2rem;
    --button-size-mobile-small: 1.3rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-alt);
    background-color: var(--secondary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: var(--text-size);
}

h1, h2, h3, h4, h5, h6, .font-main {
    font-family: var(--font-main);
    font-weight: 700;
}

/* Títulos normalizados */
h1, .hero-title, .experience-title, .michelada-content h2, 
.stores-title, .final-content h2, .contact-title, 
.products-section h1, .pedido-title, .about-content-large h1 {
    font-size: var(--title-size);
}

/* Subtítulos normalizados */
h2, .subtitle, .experience-card-white .experience-content h3,
.pedido-info h3, .contact-social h3{
    font-size: var(--subtitle-size);
}

/* Textos normalizados */
p, .product-details, .pedido-subtitle, .pedido-info p,
.contact-subtitle, .about-content-large p, .michelada-content p,
.final-content p, .store-name, .product-info h3 {
    font-size: var(--text-size);
}

/* Botones normalizados */
.hero-btn, .experience-cta, .buy-button, .submit-button,
.social-link, .desktop-nav a, .mobile-nav a {
    font-size: var(--button-size);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.top-header {
    padding: 10px 0;
    border-bottom: 1px solid rgba(230, 34, 63, 0.1);
}

.top-header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.social-media {
    display: flex;
    gap: 15px;
    flex: 1;
    justify-content: flex-start;
}

.social-media a {
    display: inline-block;
    transition: var(--transition);
}

.social-media a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.social-media svg {
    width: 24px;
    height: 24px;
    fill: var(--text);
}

.logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: 110px;
    width: auto;
    transition: var(--transition);
    display: block;
}

.logo img:hover {
    transform: scale(0.85);
}

.header-right {
    flex: 1;
}

.main-nav {
    background-color: var(--secondary);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    min-height: 50px;
}

.desktop-nav {
    display: flex;
    width: 100%;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: space-between;
}

.desktop-nav li {
    flex: 1;
    text-align: center;
}

.desktop-nav .nav-left {
    text-align: left;
}

.desktop-nav .nav-right {
    text-align: right;
}

.desktop-nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 15px 20px;
    position: relative;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    font-family: var(--font-main);
}

.desktop-nav .nav-left a {
    padding-left: 0;
}

.desktop-nav .nav-right a {
    padding-right: 0;
}

.desktop-nav a:hover {
    color: var(--primary);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.desktop-nav li:nth-child(2) {
    margin-right: 80px;
}

.desktop-nav li.has-submenu {
    margin-left: 20px;
    margin-right: 80px;
}

.dropdown-arrow {
    transition: var(--transition);
}

.has-submenu:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.has-submenu {
    position: relative;
}

.has-submenu .submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 180px;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: var(--transition);
    z-index: 100;
    list-style: none;
    padding: 10px 0;
    margin-top: 10px;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.has-submenu .submenu li {
    margin: 0;
    text-align: left;
}

.has-submenu .submenu a {
    display: block;
    padding: 12px 20px;
    color: var(--text);
    text-transform: none;
    font-weight: 400;
    font-size: 1.3rem;
    white-space: nowrap;
    border-bottom: none;
    justify-content: flex-start;
    width: 100%;
    font-family: var(--font-alt);
}

.has-submenu .submenu a::after {
    display: none;
}

.has-submenu .submenu a:hover {
    background-color: rgba(230, 34, 63, 0.1);
    color: var(--primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    justify-content: space-between;
    z-index: 1000;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    color: var(--white);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav ul {
    list-style: none;
    margin-top: 60px;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-main);
}

.mobile-nav a:hover {
    opacity: 0.8;
}

.mobile-nav .has-submenu > a .dropdown-arrow {
    transition: var(--transition);
}

.mobile-nav .has-submenu.active > a .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-nav .submenu {
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav .has-submenu.active .submenu {
    max-height: 300px;
}

.mobile-nav .submenu a {
    font-weight: 400;
    padding: 10px 0;
    font-family: var(--font-alt);
    font-size: 1.3rem;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

/* HERO SECTION */
.hero {
    background-color: var(--secondary);
    padding: 1cm 0 0 0;
    margin: 0;
    width: 100%;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1cm;
    align-items: stretch;
    min-height: 500px;
}

.hero-image-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: var(--radius);
    overflow: hidden;
}

.hero-image-col .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.hero-image-col .hero-image-element {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
}

.hero-image-col .hero-btn-container {
    position: absolute;
    bottom: 1cm;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
    text-align: center;
    pointer-events: none;
}

.hero-image-col .hero-btn {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-main);
    box-shadow: 0 8px 20px rgba(230, 34, 63, 0.3);
    pointer-events: auto;
    cursor: pointer;
}

.hero-image-col .hero-btn:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(230, 34, 63, 0.4);
}

.hero-video-col {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: var(--radius);
    overflow: hidden;
}

.hero-video-col .video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.hero-video-col video {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
}

main {
    min-height: 60vh;
    padding: 60px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
    background-color: var(--secondary);
}

/* EXPERIENCE SECTION */
.experience-section {
    padding: 30px 0;
    background-color: var(--secondary);
}

.experience-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text);
    font-weight: 800;
}

.experience-grid-white {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--secondary);
    border-radius: var(--radius);
}

.experience-card-white {
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.experience-card-white:hover {
    transform: translateY(-10px);
}

.experience-card-white .experience-image {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
    padding: 10px;
    background: transparent;
}

.experience-card-white:hover .experience-image {
    transform: scale(1.05);
}

.experience-card-white .experience-image img {
    transition: transform 0.5s ease;
}

.experience-card-white:hover .experience-image img {
    transform: scale(1.1);
}

.experience-card-white .experience-content {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    background: transparent;
}

.experience-card-white .experience-content h3 {
    color: var(--text);
    margin-bottom: 0;
    font-weight: 700;
}

.experience-card-white .experience-content p {
    color: var(--primary);
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

.experience-card-white .experience-cta {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary);
    margin: 0 auto;
    max-width: 200px;
}

.experience-card-white .experience-cta:hover {
    background: transparent;
    color: var(--primary);
}

.normalized-image,
.normalized-image-salsas,
.normalized-image-large {
    width: auto !important;
    height: 90% !important;
    max-width: 95% !important;
    object-fit: contain !important;
    display: block;
    margin: 0 auto;
    transition: transform 0.5s ease;
}

/* MICHELADA SECTION - MODIFICADA */
.michelada-section {
    padding: 100px 0;
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
}

.michelada-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.michelada-content h2 {
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
}

.michelada-content p {
    margin-bottom: 35px;
    line-height: 1.6;
    color: var(--text);
    opacity: 0.9;
    font-weight: 400;
}

.michelada-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.image-container {
    width: 100%;
    max-width: 700px;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: none;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* STORES SECTION */
.stores-section {
    padding: 80px 0;
    background-color: var(--secondary);
}

.stores-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.stores-title {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text);
    font-weight: 800;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.store-item {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(230, 34, 63, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.store-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(230, 34, 63, 0.3);
}

.store-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.store-image {
    max-height: 150px;
    max-width: 234px;
    width: auto;
    height: auto;
    transition: var(--transition);
    filter: grayscale(30%);
}

.store-item:hover .store-image {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.store-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 15px;
    font-weight: 700;
    transform: translateY(100%);
    transition: var(--transition);
    opacity: 0;
    border-radius: 0 0 18px 18px;
}

.store-item:hover .store-name {
    transform: translateY(0);
    opacity: 1;
}

/* FINAL SECTION */
.final-section {
    padding: 80px 0;
    background-color: var(--secondary);
}

.final-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.final-content h2 {
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
}

.final-content p {
    line-height: 1.7;
    color: var(--text);
    opacity: 0.9;
    margin-bottom: 35px;
}

.final-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.final-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.buy-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-main);
    box-shadow: 0 8px 20px rgba(230, 34, 63, 0.3);
}

.buy-button:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(230, 34, 63, 0.4);
}

/* CONTACT PAGE */
.contact-hero {
    padding: 80px 0;
    background-color: var(--secondary);
}

.contact-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-title {
    margin-bottom: 20px;
    color: var(--text);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-subtitle {
    line-height: 1.7;
    color: var(--text);
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text);
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(230, 34, 63, 0.1);
}

.contact-social h3 {
    margin-bottom: 20px;
    color: var(--text);
    font-weight: 700;
    text-align: center;
    font-family: var(--font-main);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
    border: 2px solid rgba(230, 34, 63, 0.1);
    font-weight: 600;
    font-family: var(--font-alt);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(230, 34, 63, 0.15);
    color: var(--primary);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.contact-form-container {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text);
    font-family: var(--font-main);
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid rgba(230, 34, 63, 0.2);
    border-radius: 8px;
    font-family: var(--font-alt);
    transition: var(--transition);
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 34, 63, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 35px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-main);
    box-shadow: 0 8px 20px rgba(230, 34, 63, 0.3);
    margin-top: 10px;
}

.submit-button:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(230, 34, 63, 0.4);
}

.submit-button svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.submit-button:hover svg {
    transform: translateX(3px);
}

/* PRODUCTS SECTION */
.products-section {
    padding: 60px 0;
    font-family: var(--font-alt);
    background-color: var(--secondary);
}

.products-section h1 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text);
}

.products-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: rgba(230, 34, 63, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 300px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 0 0 var(--radius) var(--radius);
}

.product-info h3 {
    margin-bottom: 10px;
    color: var(--text);
    font-family: var(--font-main);
}

.product-details {
    color: rgba(230, 34, 63, 0.7);
    margin-bottom: 10px;
    line-height: 1.5;
}

/* QR SECTION */
.pedido-section {
    padding: 80px 0;
    background-color: var(--secondary);
    text-align: center;
}

.pedido-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.pedido-title {
    margin-bottom: 15px;
    color: var(--text);
    font-weight: 800;
}

.pedido-subtitle {
    margin-bottom: 40px;
    color: var(--text);
    opacity: 0.9;
    font-weight: 500;
}

.qr-container {
    margin: 0 auto 40px;
    max-width: 250px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.qr-image {
    width: 100%;
    height: auto;
    display: block;
}

.pedido-info {
    max-width: 600px;
    margin: 0 auto;
}

.pedido-info h3 {
    margin-bottom: 20px;
    color: var(--text);
    font-weight: 700;
}

.pedido-info p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text);
    opacity: 0.9;
}

/* ============================================
   FOOTER - VERSIÓN SIMPLE QUE FUNCIONA
   ============================================ */
.site-footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0 20px;
    width: 100%;
    font-family: var(--font-alt);
}

.site-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.site-footer .footer-col h3 {
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    font-size: 18px;
}

.site-footer .footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
     font-size: 16px;
}

/* REDES SOCIALES - Copiado exactamente del header que funciona */
.site-footer .footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.site-footer .footer-social a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.site-footer .footer-social a:hover {
    transform: scale(1.1);
}

.site-footer .footer-social svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary) !important;
}
.site-footer .footer-social svg path {
    fill: rgb(245, 215, 117) !important;
}

.site-footer .footer-links {
    list-style: none;
    padding: 0;
}

.site-footer .footer-links li {
    margin-bottom: 10px;
}

.site-footer .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.site-footer .footer-links a:hover {
    color: var(--white);
}

.site-footer .footer-address {
    font-style: normal;
}

.site-footer .footer-address p {
    margin-bottom: 8px;
}

.site-footer .footer-address a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.site-footer .footer-address a:hover {
    color: var(--white);
}

.site-footer .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer .footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* ABOUT HERO LARGE */
.about-hero-large {
    padding: 80px 0;
    background-color: var(--secondary);
    width: 100%;
    overflow: hidden;
}

.about-container-large {
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-large-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
}

.about-image-large {
    width: 100%;
    height: auto;
    max-width: 100%;
    min-width: 800px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    display: block;
}

.about-image-large:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 50px rgba(230, 34, 63, 0.2);
}

.about-content-large {
    width: 100%;
    padding: 20px;
}

.about-content-large h1 {
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
}

.about-content-large p {
    line-height: 1.7;
    color: var(--text);
    opacity: 0.9;
    margin-bottom: 25px;
}

/* ============================================
   RESPONSIVE - VERSIÓN NORMALIZADA
   ============================================ */

/* Tablets y móviles grandes */
@media (max-width: 920px) {
    /* Tamaños para tablets */
    :root {
        --title-size: var(--title-size-mobile);
        --subtitle-size: var(--subtitle-size-mobile);
        --text-size: var(--text-size-mobile);
        --button-size: var(--button-size-mobile);
    }
    
    .desktop-nav {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .top-header .header-container {
        flex-direction: column;
        gap: 10px;
    }
    .social-media {
        justify-content: center;
        order: 1;
    }
    .logo {
        order: 2;
    }
    .logo img {
        height: 90px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-grid-white {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .site-footer .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Ajustes específicos para about */
    .about-image-large {
        min-width: 100%;
    }
    .about-container-large {
        grid-template-columns: 1fr;
        padding: 0 30px;
    }
    .about-content-large {
        text-align: center;
    }
    
    /* Ajustes para títulos legales */
    main div h1 {
        font-size: 4rem !important;
    }
}

/* Móviles medianos y pequeños */
@media (max-width: 640px) {
    /* Tamaños para móviles estándar */
    :root {
        --title-size: var(--title-size-mobile-small);
        --subtitle-size: var(--subtitle-size-mobile-small);
        --text-size: var(--text-size-mobile-small);
        --button-size: var(--button-size-mobile-small);
    }
    
    .experience-grid-white {
        grid-template-columns: 1fr;
    }
    
    .stores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .michelada-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .michelada-image {
        order: -1;
    }
    
    .image-container {
        max-width: 100%;
        padding: 0;
    }
    
    .image-container img {
        width: 100%;
        height: auto;
        max-height: 450px;
        object-fit: contain;
    }
    
    .final-container {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .site-footer .footer-col {
        text-align: center;
    }
    
    .site-footer .footer-social {
        justify-content: center;
    }
    
    .site-footer .footer-links {
        padding: 0;
    }
    
    .site-footer .footer-links li {
        text-align: center;
    }
    
    /* Ajustes para títulos legales en móvil */
    main div h1 {
        font-size: 2.8rem !important;
    }
    
    /* Ajustes para el formulario de contacto */
    .contact-form-container {
        padding: 25px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
    }
    
    /* Ajustes para productos */
    .products-grid {
        gap: 20px;
    }
    
    .product-image {
        height: 250px;
    }
    
    /* Ajustes para tiendas */
    .stores-grid {
        gap: 20px;
    }
    
    .store-item {
        padding: 25px 15px;
    }
    
    .store-logo {
        height: 100px;
    }
    
    /* Ajustes para QR */
    .qr-container {
        max-width: 200px;
    }
}

/* Móviles muy pequeños */
@media (max-width: 480px) {
    /* Ajustes adicionales para pantallas muy pequeñas */
    .image-container img {
        max-height: 350px;
    }
    
    .hero-image-col .hero-btn {
        padding: 12px 30px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .store-item {
        padding: 20px 10px;
    }
    
    .store-logo {
        height: 80px;
    }
    
    /* Ajustes para los títulos de las páginas legales */
    main div h1 {
        font-size: 2.2rem !important;
    }
    
    /* Ajustes para el texto legal */
    main div div p {
        font-size: 0.95rem !important;
    }
    
    /* Ajustes para el footer en móvil */
    .site-footer .footer-title {
        font-size: 1.2rem;
    }
    
    .site-footer .footer-text,
    .site-footer .footer-links a,
    .site-footer .footer-address p {
        font-size: 0.9rem;
    }
}

/* Para tablets en landscape */
@media (min-width: 641px) and (max-width: 920px) {
    .image-container {
        max-width: 600px;
    }
    
    /* Ajuste específico para about en tablets */
    .about-content-large h1 {
        font-size: 2.4rem;
    }
    
    .about-content-large p {
        font-size: 1.1rem;
    }
}