/* ===================================
   TIERRA BURRITO BAR - COMPLETE CSS
   =================================== */

/* Google Fonts - Bebas Neue */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* ===================================
   FORCE LIGHT MODE — ALL BROWSERS / iOS SAFARI
   =================================== */
:root {
    color-scheme: light !important;
    supported-color-schemes: light !important;
}

html {
    color-scheme: light !important;
}

/* Nuclear override: if OS is in dark mode, force every element back to light */
@media (prefers-color-scheme: dark) {
    html {
        background-color: #ead6b7 !important;
        color: #343434 !important;
        color-scheme: light !important;
    }
    body {
        background-color: #ead6b7 !important;
        color: #343434 !important;
        color-scheme: light !important;
    }
    /* Header */
    header.shrink {
        background-color: #e6d6ba !important;
        color: #343434 !important;
    }
    nav > a, .dropdown-toggle, .mobile-menu a,
    .mobile-dropdown-toggle {
        color: #343434 !important;
    }
    /* Footer */
    footer {
        background-color: #fdf8de !important;
        color: #343434 !important;
    }
    .footer-links a { color: #343434 !important; }
    /* Mobile menu */
    .mobile-menu {
        background-color: #ead6b7 !important;
        color: #343434 !important;
    }
    .mobile-dropdown-content {
        background-color: #ead6b7 !important;
    }
    /* Dropdown */
    .dropdown-content {
        background-color: #e6d6ba !important;
    }
    .dropdown-content a { color: #343434 !important; }
    /* Cards / surfaces */
    .legal-section, .ingredient-card, .allergen-container,
    .section, .legal-footer-note {
        background-color: #e6d6ba !important;
        color: #343434 !important;
    }
    .faq-item, .faq-question, .faq-answer {
        background-color: #fdf8de !important;
        color: #343434 !important;
    }
    /* Paragraphs and text */
    p, h1, h2, h3, h4, h5, h6, span, li, td, th, a {
        color: inherit !important;
    }
    /* Inputs */
    input, select, textarea {
        background-color: #e6d6ba !important;
        color: #343434 !important;
        color-scheme: light !important;
    }
}

/* ===================================
   BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===================================
   GLOBAL BUTTON + INPUT ROUNDNESS
   =================================== */
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
    border-radius: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="file"],
textarea,
select {
    border-radius: 5px;
}

html {
    background-color: #ead6b7;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #343434;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #ead6b7;
}

/* ===================================
   HEADER STYLES
   =================================== */
header {
    padding: 0.25rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding 0.3s ease, box-shadow 0.3s ease, background-color 0.4s ease;
    background-color: #fdf8de;
}

header.shrink {
    padding: 0.1rem 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    background-color: #e6d6ba !important;
}

header.shrink .logo img {
    height: 24px;
}

header.shrink nav > a,
header.shrink .dropdown-toggle {
    font-size: 0.95rem;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 30px;
    width: auto;
    transition: height 0.3s ease;
}

/* ===================================
   DESKTOP NAVIGATION
   =================================== */
nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav > a,
.dropdown-toggle {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.08em;
    color: #343434;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 2px;
}

nav > a::after,
.dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f16924;
    transition: width 0.3s ease;
}

nav > a:hover::after,
.dropdown-toggle:hover::after,
nav > a.active::after {
    width: 100%;
}

nav > a:hover,
.dropdown-toggle:hover {
    color: #f16924;
}

nav > a.active {
    color: #f16924;
}

/* ===================================
   DROPDOWN MENU
   =================================== */
.dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-arrow {
    font-size: 0.6rem;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #e6d6ba;
    min-width: 150px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1001;
    margin-top: 0;
    padding-top: 0.5rem;
    border-radius: 0 0 4px 4px;
}

.dropdown-content a {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.08em;
    color: #343434;
    padding: 0.65rem 1rem;
    text-decoration: none;
    display: block;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-content a:hover {
    background-color: #f16924;
    color: #fdf8de;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* ===================================
   HAMBURGER MENU
   =================================== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #343434;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===================================
   MOBILE SLIDE MENU
   =================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: #ead6b7;
    transition: right 0.3s ease;
    padding: 5rem 2rem 2rem;
    z-index: 999;
    box-shadow: -2px 0 5px rgba(0,0,0,0.15);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.08em;
    display: block;
    color: #343434;
    text-decoration: none;
    padding: 1rem 0;
    font-size: 1.2rem;
    border-bottom: 1px solid #e0d0bc;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #f16924;
}

.mobile-dropdown {
    border-bottom: 1px solid #e0d0bc;
}

.mobile-dropdown-toggle {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.08em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    color: #343434;
    font-size: 1.2rem;
    cursor: pointer;
}

.mobile-dropdown-content {
    display: none;
    padding-left: 1rem;
    background-color: #ead6b7;
}

.mobile-dropdown-content.active {
    display: block;
}

.mobile-dropdown-content a {
    padding: 0.75rem 0;
    font-size: 1rem;
}

/* ===================================
   OVERLAY
   =================================== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 998;
}

.overlay.active {
    display: block;
}

/* ===================================
   MAIN CONTENT
   =================================== */
main {
    flex: 1;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.page-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #343434;
}

/* ===================================
   FOOTER STYLES
   =================================== */
footer {
    position: relative;
    background-color: #fdf8de;
    color: #343434;
    text-align: center;
    padding: 6px 2rem 8px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-lang-group,
.footer-legal-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-sep-desktop {
    display: inline;
}

.footer-links a {
    color: #343434;
    text-decoration: none;
    font-size: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f16924;
    text-decoration: underline;
}

.footer-separator {
    color: #999;
    font-size: 10px;
}

/* Footer language switcher */
.footer-lang-btn {
    font-size: 10px;
    color: #a09080;
    cursor: pointer;
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    letter-spacing: 0.04em;
}

.footer-lang-btn:hover {
    color: #f16924;
}

.footer-lang-btn.active {
    color: #f16924;
    font-weight: 700;
}

/* Footer accessibility link */
.footer-access-link {
    font-size: 10px;
    color: #343434;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-access-link:hover {
    color: #f16924;
    text-decoration: underline;
}

/* ===================================
   SILKTIDE COOKIE ICON — FORCE BOTTOM RIGHT
   (The JS config's bottomRight class isn't applying reliably)
   =================================== */
#silktide-cookie-icon {
    left: auto !important;
    right: 10px !important;
}

/* ===================================
   FLOATING SOCIAL MEDIA ICONS
   =================================== */
.social-sidebar {
    position: fixed !important;
    left: 0 !important;
    right: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 9999 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start;
    gap: 3px;
}

.social-sidebar a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px;
    height: 34px;
    background-color: #f16924;
    color: #ead6b7;
    text-decoration: none;
    transition: background-color 0.3s ease, width 0.3s ease;
    border-radius: 0 5px 5px 0;
}

.social-sidebar a:hover {
    background-color: #c8541c;
    width: 40px;
}

.social-sidebar a svg {
    width: 15px !important;
    height: 15px !important;
    fill: #ead6b7 !important;
    flex-shrink: 0;
    display: block;
}

/* ===================================
   TIERRA SLIDER STYLES
   =================================== */
#tierra-slider-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#tierra-slider-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-color: #ead6b7;
}

#tierra-slider-wrapper {
    display: flex;
    width: 100%;
    height: 100vh;
    transition: transform 0.5s ease-in-out;
}

@media (min-width: 769px) {
    #tierra-slider-container .tierra-slide-item {
        flex: 0 0 33.333%;
        width: 33.333%;
        height: 100vh;
        position: relative;
    }
}

@media (max-width: 768px) {
    #tierra-slider-container .tierra-slide-item {
        flex: 0 0 100%;
        width: 100%;
        height: 100vh;
        position: relative;
    }
}

#tierra-slider-container .tierra-portfolio-holder {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    padding: 10px;
}

#tierra-slider-container .tierra-slide-image {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 8px;
}

#tierra-slider-container .tierra-slide-title {
    position: absolute;
    top: 30px;
    left: 20px;
    right: 20px;
    color: #ead6b7;
    font-size: 3em;
    font-weight: bold;
    text-align: center;
    text-transform: capitalize;
    margin: 0;
    z-index: 3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#tierra-slider-container .tierra-slide-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
    padding: 30px 20px;
    transform: translateY(calc(100% + 20px));
    transition: transform 0.3s ease;
    border-radius: 8px;
    pointer-events: none;
    z-index: 3;
}

#tierra-slider-container .tierra-slide-item:hover .tierra-slide-overlay {
    transform: translateY(0);
}

#tierra-slider-container .tierra-slide-description {
    color: #ead6b7;
    font-size: 1.2em;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

#tierra-slider-container .tierra-nav-buttons {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 10;
}

#tierra-slider-container .tierra-nav-btn {
    background: rgba(241, 105, 36, 0.85);
    color: #ead6b7;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(5px);
}

#tierra-slider-container .tierra-nav-btn:hover {
    background: rgba(241, 105, 36, 1);
    transform: scale(1.1);
}

/* ===================================
   ALLERGEN TABLE STYLES
   =================================== */
.allergen-container {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #e6d6ba;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.allergen-container h1 {
    text-align: center;
    color: #343434;
    margin-bottom: 30px;
}

.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
}

.allergen-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.allergen-header {
    text-align: center;
    padding: 10px 5px;
    background-color: #fdf8de;
    border: 1px solid #d4c4a8;
    vertical-align: middle;
}

.allergen-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 8px;
    background-color: #d4c4a8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 24px;
}

.allergen-name {
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    color: #343434;
    line-height: 1.2;
}

.food-item {
    padding: 12px 15px;
    background-color: #fdf8de;
    border: 1px solid #d4c4a8;
    font-weight: 600;
    color: #343434;
    white-space: nowrap;
}

.allergen-table td {
    text-align: center;
    padding: 10px 5px;
    border: 1px solid #d4c4a8;
    background-color: #fdf8de;
}

.contains {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #343434;
    border-radius: 50%;
}

.may-contain {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #343434;
    border-radius: 50%;
    background-color: #fdf8de;
}

.trace-notice {
    margin-top: 30px;
    padding: 20px;
    background-color: #e6d6ba;
    border-left: 4px solid #f16924;
    display: flex;
    align-items: center;
    gap: 15px;
}

.trace-icon {
    width: 50px;
    height: 50px;
    background-color: #f16924;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ead6b7;
    font-size: 24px;
}

.trace-text {
    flex: 1;
}

.trace-text strong {
    color: #f16924;
}

.legend {
    margin-top: 20px;
    padding: 15px;
    background-color: #ead6b7;
    border-radius: 4px;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 30px;
    margin-bottom: 10px;
}

.side-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background-color: #f16924;
    color: #fdf8de;
    padding: 20px 10px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 2px;
    text-align: center;
}

/* ===================================
   NUTRITION CALCULATOR STYLES
   =================================== */
.nutrition-sticky-banner {
    position: relative;
    top: 0px;
    width: 100%;
    background-color: #f16924;
    color: #ead6b7;
    padding: 1rem;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 10px;
    z-index: 999;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 4px;
}

.nutrition-button-container {
    text-align: center;
    padding: 0.5rem 0;
    background-color: #e6d6ba;
    margin-bottom: 1rem;
}

.nutrition-reset-button {
    font-size: 12px;
    line-height: 32px;
    font-weight: 600;
    padding: 0 16px;
    border: 2px solid #f16924;
    cursor: pointer;
    outline: 0;
    color: #ead6b7;
    background: #f16924;
    text-transform: uppercase;
    text-align: center;
    border-radius: 3px;
    appearance: none;
    transform: translateZ(0);
    position: relative;
}

.nutrition-reset-button:hover {
    background-color: #c8541c;
    border-color: #c8541c;
}

.nutrition-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.5rem;
}

.ingredient-card {
    background-color: #e6d6ba;
    border: 1px solid #d4c4a8;
    border-radius: 6px;
    padding: 0.6rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
    border-bottom: 1px solid #d4c4a8;
    padding-bottom: 0.4rem;
}

.card-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.card-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.ingredient-image {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    object-fit: cover;
    margin-bottom: 0.3rem;
}

.ingredient-name {
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.2;
    color: #343434;
}

.card-nutrients {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem;
    font-size: 0.7rem;
}

.nutrient-item {
    display: flex;
    justify-content: space-between;
    padding: 0.2rem 0.3rem;
    border-radius: 2px;
    background-color: #ead6b7;
}

.nutrient-label {
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.3px;
}

.nutrient-value {
    font-weight: 500;
    color: #343434;
}

/* ===================================
   PRIVACY PAGE STYLES
   =================================== */
.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f16924 0%, #c8541c 100%);
    border-radius: 12px;
    color: #ead6b7;
}

.privacy-header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: bold;
}

.privacy-header p {
    font-size: 1.1em;
    opacity: 0.95;
}

.section {
    background: #e6d6ba;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #f16924;
}

.section h2 {
    color: #f16924;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: bold;
}

.section h3 {
    color: #343434;
    font-size: 1.3em;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.section p {
    margin-bottom: 15px;
    color: #555;
    text-align: justify;
}

.section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.section li {
    margin-bottom: 10px;
    color: #555;
}

.company-info {
    background: #ead6b7;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
    border: 2px solid #f16924;
}

.company-info p {
    margin: 8px 0;
    color: #343434;
    font-weight: 500;
}

.company-info strong {
    color: #f16924;
}

.highlight-box {
    background: #e6d6ba;
    padding: 20px;
    border-left: 4px solid #f16924;
    border-radius: 4px;
    margin: 20px 0;
}

.highlight-box p {
    color: #c8541c;
    font-weight: 500;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    padding: 10px 20px;
    background: #f16924;
    color: #ead6b7;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #c8541c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(241, 105, 36, 0.3);
}

.footer-note {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: #e6d6ba;
    border-radius: 8px;
    color: #666;
}

.footer-note p {
    margin: 10px 0;
}

.footer-note a {
    color: #f16924;
    text-decoration: none;
    font-weight: 600;
}

.footer-note a:hover {
    text-decoration: underline;
}

/* ===================================
   LEGAL PAGES (Privacidad, Cookies, Denuncias)
   =================================== */
.legal-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-page-header {
    background-color: #343434;
    color: #fdf8de;
    border-radius: 10px;
    padding: 40px 30px;
    margin-bottom: 30px;
    text-align: center;
}

.legal-page-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8em;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    color: #fdf8de;
}

.legal-page-header p {
    font-size: 1em;
    opacity: 0.8;
    margin: 0;
    color: #fdf8de;
}

.legal-section {
    background: #fdf8de;
    margin-bottom: 16px;
    padding: 28px 30px;
    border-radius: 8px;
    border-left: 4px solid #f16924;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.legal-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5em;
    letter-spacing: 0.06em;
    color: #f16924;
    margin-bottom: 14px;
}

.legal-section h3 {
    font-size: 1em;
    font-weight: 700;
    color: #343434;
    margin: 18px 0 8px;
}

.legal-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 0.92em;
}

.legal-section ul {
    margin: 10px 0 12px 20px;
}

.legal-section li {
    color: #555;
    font-size: 0.92em;
    line-height: 1.6;
    margin-bottom: 6px;
}

.legal-info-box {
    background: #fdf8de;
    border: 1px solid #c8b898;
    border-radius: 6px;
    padding: 18px 20px;
    margin: 14px 0;
}

.legal-info-box p {
    margin: 5px 0;
    font-size: 0.9em;
    color: #343434;
}

.legal-highlight {
    background: #fdf8de;
    border-left: 3px solid #f16924;
    border-radius: 4px;
    padding: 14px 18px;
    margin: 14px 0;
}

.legal-highlight p {
    color: #6b3a1f;
    font-size: 0.9em;
    margin: 0;
    line-height: 1.6;
}

.legal-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.legal-social-links a {
    display: inline-block;
    padding: 8px 18px;
    background: #f16924;
    color: #ead6b7;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    transition: background 0.3s;
}

.legal-social-links a:hover {
    background: #c8541c;
}

.legal-footer-note {
    text-align: center;
    margin-top: 20px;
    padding: 24px;
    background: #fdf8de;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.legal-footer-note p {
    margin: 6px 0;
    font-size: 0.88em;
    color: #555;
}

.legal-footer-note a {
    color: #f16924;
    text-decoration: none;
    font-weight: 600;
}

.legal-footer-note a:hover {
    text-decoration: underline;
}

.legal-table-wrapper {
    overflow-x: auto;
    border-radius: 6px;
    margin: 14px 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
    font-size: 0.88em;
}

.legal-table thead {
    background-color: #343434;
    color: #ead6b7;
}

.legal-table th {
    padding: 12px 14px;
    text-align: left;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
    font-size: 1em;
}

.legal-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #d4c4a8;
    color: #555;
}

.legal-table tbody tr:hover {
    background-color: #ead6b7;
}

.legal-table tbody tr:last-child td {
    border-bottom: none;
}

.legal-cookie-detail {
    background: #fdf8de;
    border-left: 3px solid #f16924;
    border-radius: 4px;
    padding: 12px 16px;
    margin: 10px 0;
}

.legal-cookie-detail h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.05em;
    color: #f16924;
    letter-spacing: 0.05em;
    margin: 0 0 4px;
}

.legal-cookie-detail p {
    margin: 0;
    font-size: 0.88em;
    color: #555;
}

.legal-links-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.legal-links-list li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.legal-links-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #f16924;
}

.legal-links-list a {
    color: #f16924;
    text-decoration: none;
    font-weight: 600;
}

.legal-links-list a:hover {
    text-decoration: underline;
}

.legal-action-btn {
    display: inline-block;
    margin: 14px 0;
    padding: 10px 22px;
    background: #f16924;
    color: #ead6b7;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.88em;
    font-weight: 600;
    transition: background 0.3s;
}

.legal-action-btn:hover {
    background: #c8541c;
}

.legal-browser-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.legal-browser-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #fdf8de;
    border: 2px solid #d4c4a8;
    border-radius: 6px;
    text-decoration: none;
    color: #343434;
    font-size: 0.88em;
    font-weight: 600;
    transition: all 0.2s;
}

.legal-browser-btn:hover {
    border-color: #f16924;
    color: #f16924;
}

/* ===================================
   ALLERGEN PAGE HEADER
   =================================== */
.allergen-page-header {
    text-align: center;
    margin-bottom: 24px;
    padding: 30px 20px;
    background-color: #343434;
    border-radius: 8px;
    color: #fdf8de;
}

.allergen-page-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4em;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
    color: #fdf8de;
}

.allergen-page-header p {
    font-size: 0.95em;
    opacity: 0.8;
    margin: 0;
    color: #fdf8de;
}

/* ===================================
   COOKIE POLICY PAGE STYLES
   =================================== */
.cookies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.cookies-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f16924 0%, #c8541c 100%);
    border-radius: 12px;
    color: #ead6b7;
}

.cookies-header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: bold;
}

.cookies-header p {
    font-size: 1.1em;
    opacity: 0.95;
}

.cookies-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    background: #e6d6ba;
    min-width: 600px;
}

.cookies-table thead {
    background: #f16924;
    color: #ead6b7;
}

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookies-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #d4c4a8;
    color: #555;
}

.cookies-table tbody tr:hover {
    background: #ead6b7;
}

.cookies-table tbody tr:last-child td {
    border-bottom: none;
}

.cookie-detail {
    background: #ead6b7;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
    border-left: 4px solid #f16924;
}

.cookie-detail h3 {
    color: #f16924;
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: 600;
}

.cookie-detail p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.links-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.links-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.links-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #f16924;
    font-weight: bold;
}

.links-list a {
    color: #f16924;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.links-list a:hover {
    color: #c8541c;
    text-decoration: underline;
}

.download-link {
    display: inline-block;
    margin: 20px 0;
    padding: 15px 30px;
    background: #f16924;
    color: #ead6b7;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(241, 105, 36, 0.3);
}

.download-link:hover {
    background: #c8541c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(241, 105, 36, 0.4);
}

.browser-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.browser-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #e6d6ba;
    border: 2px solid #d4c4a8;
    border-radius: 8px;
    text-decoration: none;
    color: #343434;
    transition: all 0.3s ease;
}

.browser-link:hover {
    border-color: #f16924;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(241, 105, 36, 0.2);
}

.browser-icon {
    font-size: 3em;
    margin-bottom: 10px;
}

.browser-name {
    font-weight: 600;
    font-size: 1em;
}

/* ===================================
   FAQ PAGE STYLES
   =================================== */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.faq-header {
    background-color: #343434;
    color: #fdf8de;
    border-radius: 10px;
    padding: 40px 30px;
    margin-bottom: 40px;
    text-align: center;
}

.faq-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.2em;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    color: #fdf8de;
    line-height: 1;
}

.faq-header p {
    font-size: 1em;
    opacity: 0.75;
    margin: 0;
    color: #fdf8de;
}

.faq-content {
    margin-bottom: 40px;
}

.faq-item {
    background: #fdf8de;
    margin-bottom: 4px;
    border-radius: 5px;
    box-shadow: none;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.faq-item:hover {
    border-left-color: #f16924;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #fdf8de;
    border: none;
    border-bottom: 1px solid #c8b898;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25em;
    letter-spacing: 0.05em;
    font-weight: 400;
    color: #343434;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #ead6b7;
}

.faq-item.active .faq-question {
    background: #fdf8de;
    color: #f16924;
}

.faq-item.active {
    border-left-color: #f16924;
}

.faq-icon {
    font-size: 1.5em;
    font-weight: bold;
    color: #f16924;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fdf8de;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 18px 20px 20px;
    border-top: 1px solid #c8b898;
}

.faq-answer p {
    color: #444;
    line-height: 1.8;
    margin: 0;
}

.faq-answer a {
    color: #f16924;
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-contact-box {
    text-align: center;
    padding: 40px 30px;
    background: #ead6b7;
    border-radius: 8px;
    border: 2px solid #f16924;
    margin-top: 40px;
}

.faq-contact-box h3 {
    color: #343434;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: bold;
}

.faq-contact-box p {
    color: #555;
    font-size: 1.1em;
    margin-bottom: 25px;
}

.contact-button {
    display: inline-block;
    padding: 15px 40px;
    background: #f16924;
    color: #ead6b7;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(241, 105, 36, 0.3);
}

.contact-button:hover {
    background: #c8541c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(241, 105, 36, 0.4);
}

/* ===================================
   TRABAJA CON NOSOTROS PAGE
   =================================== */
.trabaja-main {
    padding: 0;
    max-width: 100%;
}

.trabaja-header {
    background-color: #343434;
    color: #fdf8de;
    border-radius: 10px;
    max-width: calc(860px - 4rem);
    margin: 1.5rem auto 1.5rem;
    text-align: center;
    padding: 40px 30px;
}

.trabaja-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.2em;
    letter-spacing: 0.06em;
    color: #fdf8de;
    line-height: 1;
    margin-bottom: 8px;
}

.trabaja-header p {
    font-size: 1em;
    opacity: 0.75;
    margin: 0;
    color: #fdf8de;
}

.trabaja-hero {
    width: 100%;
    max-width: calc(860px - 4rem);
    max-height: 480px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    margin: 0 auto;
    border: 4px solid #f16924;
}

.trabaja-body {
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.trabaja-intro {
    text-align: center;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 3rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.trabaja-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: #343434;
    text-align: center;
    margin-bottom: 2rem;
}

/* Icons grid */
.trabaja-icons-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.trabaja-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    width: 110px;
}

.trabaja-icon-item img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: invert(43%) sepia(88%) saturate(469%) hue-rotate(346deg) brightness(96%) contrast(95%);
}

.trabaja-icon-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: #343434;
    text-align: center;
    line-height: 1.2;
}

/* Profile box */
.trabaja-profile-box {
    background-color: #f16924;
    border-radius: 10px;
    padding: 1.8rem 2rem;
    margin-bottom: 3rem;
}

.trabaja-profile-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trabaja-profile-box ul li {
    color: #ead6b7;
    font-size: 0.95rem;
    padding: 0.35rem 0;
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.5;
}

.trabaja-profile-box ul li::before {
    content: '●';
    position: absolute;
    left: 0;
    font-size: 0.5rem;
    top: 0.5rem;
    color: #ead6b7;
}

/* CTA */
.trabaja-cta {
    text-align: center;
    margin: 2rem 0 3rem;
}

.trabaja-form-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
    margin: 0 auto 1rem;
    opacity: 0.85;
}

.trabaja-btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border: 2px solid #343434;
    color: #343434;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    background: transparent;
}

.trabaja-btn:hover {
    background-color: #f16924;
    border-color: #f16924;
    color: #ead6b7;
}

/* Video */
.trabaja-video-wrap {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid #f16924;
}

.trabaja-video-wrap iframe {
    width: 100%;
    height: 420px;
    display: block;
    border: none;
}

/* ===================================
   FLIP CARDS (Solicitud)
   =================================== */
.sol-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 1.5rem;
    perspective: 1000px;
}

.flip-card-wrap {
    position: relative;
    height: 220px;
    cursor: pointer;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.flip-card-wrap:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-wrap.selected .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid #c8b898;
    transition: border-color 0.2s;
}

.flip-card-wrap.selected .flip-front,
.flip-card-wrap.selected .flip-back {
    border-color: #f16924;
}

.flip-front {
    background: #fdf8de;
    display: flex;
    flex-direction: column;
}

.flip-front img {
    width: 100%;
    flex: 1;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.flip-front-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 9px 8px;
    background: #343434;
    color: #ead6b7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.flip-front-label input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: #f16924;
    flex-shrink: 0;
    cursor: pointer;
}

.flip-back {
    background: #f16924;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    text-align: center;
}

.flip-back-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: #fdf8de;
    margin-bottom: 10px;
}

.flip-back-desc {
    font-size: 0.82rem;
    color: #fdf8de;
    line-height: 1.6;
    opacity: 0.92;
}

.flip-back-check {
    margin-top: 14px;
    width: 22px;
    height: 22px;
    accent-color: #fdf8de;
    cursor: pointer;
}

@media (max-width: 600px) {
    .sol-cards { grid-template-columns: 1fr; }
    .flip-card-wrap { height: 180px; }
}

/* ===================================
   JOB APPLICATION FORM PAGE
   ===================================*/
.solicitud-main {
    padding: 0;
    max-width: 100%;
}

.solicitud-header {
    background-color: #343434;
    text-align: center;
    padding: 3.5rem 12%;
}

.solicitud-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 0.06em;
    color: #ead6b7;
    line-height: 1;
    margin-bottom: 0.6rem;
}

.solicitud-header p {
    font-size: 0.95rem;
    opacity: 0.75;
    color: #ead6b7;
    margin: 0;
}

.solicitud-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

/* Form section headings */
.sol-section-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    color: #343434;
    border-bottom: 2px solid #f16924;
    padding-bottom: 0.4rem;
    margin: 2.2rem 0 1.2rem;
    display: inline-block;
}

/* Inputs */
.sol-group {
    margin-bottom: 1rem;
}

.sol-group input[type="email"],
.sol-group input[type="file"],
.sol-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #c8b898;
    border-bottom: 2px solid #343434;
    background-color: #fdf8de !important;
    color: #343434;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    outline: none;
    border-radius: 5px;
    appearance: none;
    transition: border-color 0.25s;
}

.sol-group input:focus,
.sol-group select:focus {
    border-bottom-color: #f16924;
}

.sol-group input[type="file"] {
    cursor: pointer;
    padding: 10px 12px;
}

::placeholder { color: #8a7a6a; opacity: 1; }

/* Radio groups */
.sol-label {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    color: #343434;
    margin-bottom: 10px;
}

.sol-radio-group, .sol-check-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.2rem;
}

.sol-radio-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    background: #fdf8de;
    border: 1.5px solid #c8b898;
    cursor: pointer;
    transition: all 0.2s;
}

.sol-radio-item:hover,
.sol-radio-item.selected {
    border-color: #f16924;
    background: #ead6b7;
}

.sol-radio-item input {
    accent-color: #f16924;
}

.sol-radio-item label {
    font-size: 0.88rem;
    cursor: pointer;
    color: #343434;
}

/* Position cards */
.sol-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 1.5rem;
}

.sol-card {
    position: relative;
    border: 2px solid #c8b898;
    background: #fdf8de;
    cursor: pointer;
    transition: border-color 0.2s;
    overflow: hidden;
}

.sol-card:hover,
.sol-card.selected {
    border-color: #f16924;
}

.sol-card input[type="checkbox"] {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    accent-color: #f16924;
    width: 16px;
    height: 16px;
}

.sol-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 10px 8px;
    background: #343434;
    color: #ead6b7;
}

/* Hours selector */
.sol-hours-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.sol-hour-btn {
    padding: 10px 18px;
    border: 2px solid #c8b898;
    background: #fdf8de;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.06em;
    color: #343434;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 5px;
}

.sol-hour-btn:hover,
.sol-hour-btn.selected {
    border-color: #f16924;
    background: #ead6b7;
    color: #f16924;
}

/* Multi-select restaurants */
.sol-select-multi {
    width: 100%;
    min-height: 200px;
    padding: 6px;
    border: 1.5px solid #c8b898;
    background: #fdf8de;
    color: #343434;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.88rem;
    border-radius: 5px;
    outline: none;
}

.sol-select-multi option {
    padding: 6px 10px;
    background: #fdf8de;
    color: #343434;
}

.sol-select-multi option:checked {
    background: #f16924;
    color: #ead6b7;
}

.sol-select-hint {
    font-size: 0.75rem;
    color: #666;
    font-style: italic;
    margin-top: 5px;
    display: block;
}

/* Privacy text */
.sol-privacy {
    background: #ead6b7;
    padding: 15px 18px;
    font-size: 0.72rem;
    color: #555;
    line-height: 1.7;
    margin: 1.5rem 0 1rem;
}

/* Checkbox */
.sol-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.sol-checkbox-row input[type="checkbox"] {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #f16924;
}

.sol-checkbox-row label {
    font-size: 0.85rem;
    color: #343434;
    cursor: pointer;
    line-height: 1.5;
}

/* Math CAPTCHA */
.sol-captcha {
    background: #ead6b7;
    padding: 16px 18px;
    margin: 1.4rem 0;
    border-left: 3px solid #c8b898;
}

.sol-captcha-q {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    color: #343434;
    margin-bottom: 10px;
}

.sol-captcha input {
    width: 150px;
    padding: 10px 14px;
    border: 1.5px solid #c8b898;
    border-bottom: 2px solid #343434;
    background: #fdf8de !important;
    color: #343434;
    font-size: 0.9rem;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    outline: none;
}

.sol-captcha input:focus {
    border-bottom-color: #f16924;
}

/* Submit */
.sol-submit {
    width: 100%;
    padding: 1rem;
    background: #f16924;
    color: #ead6b7;
    border: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.14em;
    cursor: pointer;
    margin-top: 2rem;
    transition: background 0.25s;
    display: block;
    border-radius: 5px;
}

.sol-submit:hover { background: #c8541c; }
.sol-submit:disabled { background: #c8b898; cursor: not-allowed; }

/* ===================================
   RESPONSIVE - MOBILE (MAX 768PX)
   =================================== */
@media (max-width: 768px) {
    header nav { display: none; }

    .hamburger { display: flex; }

    .logo img { height: 26px; }

    .social-sidebar { display: flex !important; gap: 2px; }
    .social-sidebar a {
        width: 30px !important; height: 30px !important;
        background-color: #f16924 !important;
        border-radius: 0 4px 4px 0 !important;
    }
    .social-sidebar a:hover { width: 34px !important; background-color: #c8541c !important; }
    .social-sidebar a svg { width: 14px !important; height: 14px !important; }

    main { padding: 1rem; }
    .page-title { font-size: 1.5rem; }

    .footer-links { flex-direction: row; flex-wrap: wrap; gap: 0.3rem 0.4rem; justify-content: center; }
    .footer-separator { display: inline; }
    .footer-sep-desktop { display: none; }
    .footer-lang-group { width: 100%; justify-content: center; }
    .footer-legal-group { justify-content: center; }

    /* Slider */
    #tierra-slider-container .tierra-slide-title { font-size: 2.5em; top: 25px; }
    #tierra-slider-container .tierra-slide-description { font-size: 1em; }
    #tierra-slider-container .tierra-slide-overlay { bottom: 15px; left: 15px; right: 15px; padding: 20px 15px; }
    #tierra-slider-container .tierra-nav-btn { width: 50px; height: 50px; font-size: 20px; }
    #tierra-slider-container .tierra-nav-buttons { padding: 0 18%; }
    #tierra-slider-container .tierra-portfolio-holder { padding: 5px; }
    #tierra-slider-container .tierra-slide-image { top: 5px; left: 5px; right: 5px; bottom: 5px; width: calc(100% - 10px); height: calc(100% - 10px); }

    /* Allergen */
    .allergen-container { padding: 15px; }
    .allergen-icon { width: 40px; height: 40px; font-size: 20px; }
    .allergen-name { font-size: 9px; }
    .food-item { font-size: 13px; padding: 8px 10px; }
    .contains, .may-contain { width: 16px; height: 16px; }
    .trace-notice { flex-direction: column; text-align: center; }

    /* Nutrition */
    .nutrition-sticky-banner { position: relative; padding: 1rem; font-size: 1rem; line-height: 1.5; }
    .nutrition-button-container { padding: 1rem; }
    .nutrition-reset-button { font-size: 11px; line-height: 38px; padding: 0 26px; margin-bottom: 10px; }
    .nutrition-container { padding: 2rem; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
    .ingredient-card { padding: 1rem; }
    .card-header { flex-direction: column; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; padding-bottom: 0.8rem; }
    .card-checkbox { width: 20px; height: 20px; margin-top: 0; }
    .ingredient-image { width: 80px; height: 80px; margin-bottom: 0.5rem; }
    .ingredient-name { font-size: 0.95rem; }
    .card-nutrients { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 0.5rem; }
    .nutrient-item { flex-direction: column; align-items: center; padding: 0.5rem; }
    .nutrient-label { font-size: 0.7rem; margin-bottom: 0.2rem; }
    .nutrient-value { font-size: 0.9rem; }

    /* FAQ */
    .faq-container { padding: 20px 15px; }
    .faq-header { padding: 30px 15px; }
    .faq-header h1 { font-size: 2em; }
    .faq-question { padding: 15px 20px; font-size: 1em; }
    .faq-icon { font-size: 1.3em; }
    .faq-item.active .faq-answer { padding: 15px 20px; }
    .faq-contact-box { padding: 30px 20px; }
    .faq-contact-box h3 { font-size: 1.5em; }
    .contact-button { padding: 12px 30px; font-size: 1em; }

    /* Privacy */
    .privacy-container { padding: 20px 15px; }
    .privacy-header { padding: 30px 15px; }
    .privacy-header h1 { font-size: 2em; }
    .section { padding: 20px; }
    .section h2 { font-size: 1.5em; }
    .company-info { padding: 15px; }
    .social-links { flex-direction: column; }

    /* Trabaja */
    .trabaja-header { padding: 30px 15px; margin: 1rem auto 1rem; max-width: calc(860px - 2rem); }
    .trabaja-header h1 { font-size: 2em; }
    .trabaja-body { padding: 2rem 1rem 3rem; }
    .trabaja-icons-grid { gap: 1.2rem; }
    .trabaja-icon-item { width: 80px; }
    .trabaja-icon-item img { width: 52px; height: 52px; }
    .trabaja-video-wrap iframe { height: 220px; }

    /* Solicitud */
    .solicitud-header { padding: 2.5rem 6%; }
    .solicitud-header h1 { font-size: 2.4rem; }
    .solicitud-body { padding: 2rem 1rem 3rem; }
    .sol-cards { grid-template-columns: 1fr; }
    .sol-hours-grid { gap: 6px; }
}

@media (max-width: 480px) {
    #tierra-slider-container .tierra-slide-title { font-size: 2em; top: 20px; }
    #tierra-slider-container .tierra-slide-description { font-size: 0.9em; }
    #tierra-slider-container .tierra-nav-btn { width: 40px; height: 40px; font-size: 18px; }
    #tierra-slider-container .tierra-nav-buttons { padding: 0 10px; }

    .privacy-header h1 { font-size: 1.8em; }
    .section h2 { font-size: 1.3em; }

    .faq-header h1 { font-size: 1.8em; }
    .faq-question { font-size: 0.95em; padding: 12px 15px; }
    .faq-contact-box h3 { font-size: 1.3em; }
}
