/* ===== CASA DA MATRONA - MODERN PUB STYLE ===== */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --primary-light: #e6c757;

    /* Dark Theme */
    --bg-dark: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-accent: #2a2a2a;
    --bg-lighter: #3a3a3a;

    /* Text Colors */
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --text-muted: #999999;
    --text-dark: #333333;

    /* Accent Colors */
    --accent-orange: #ff6b35;
    --accent-red: #e74c3c;
    --accent-green: #27ae60;

    /* Custom Color Palette */
    --vermelho: #D7282F;
    --verde-agua: #18988B;
    --amarelo: #FFC600;
    --verde: #80BC00;
    --laranja: #D86435;
    --marrom: #9D4823;
    --preto: #000000;
    --branco: #FFFFFF;

    /* Typography */
    --font-primary: 'Oswald', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --font-figtree: 'Figtree', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 40px;

    /* Border Radius */
    --border-radius: 8px;
    --border-radius-large: 15px;

    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.2);
    --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.3);

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    max-width: 100vw;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-dark);
    overflow-x: clip;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Prevent horizontal scroll on all sections */
section {
    overflow-x: clip;
    max-width: 100%;
    position: relative;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

/* ===== FIGTREE FONT CLASS ===== */
.figtree-font {
    font-family: var(--font-figtree) !important;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    text-align: center;
}

.matrona-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: bounce 1.5s infinite;
}

.loader-icon {
    max-width: 150px;
    max-height: 150px;
    width: auto;
    height: auto;
    filter: brightness(1.2) drop-shadow(0 0 20px var(--primary-color));
}

.loader h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin: 20px 0 10px;
}

.loading-text {
    color: var(--text-muted);
    font-style: italic;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-10px); }
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-fast);
}

.navbar {
    padding: 15px 0;
}

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

.logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--bg-dark), var(--bg-secondary));
    background-image: url('../images/bg_hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, transparent 0%, transparent 30%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0.5) 100%),
        linear-gradient(
            45deg,
            rgba(10, 10, 10, 0.6),
            rgba(26, 26, 26, 0.4)
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title .highlight {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--primary-light);
    margin-bottom: 15px;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
   font-weight: lighter;
   font-size: 0.95em;
}

/* ===== NEON EFFECT ===== */
.neon-red {
    color: #FFC5D5 !important;
    text-shadow:
        0 0 5px var(--vermelho),
        0 0 10px var(--vermelho),
        0 0 15px var(--vermelho),
        0 0 20px var(--vermelho),
        0 0 35px var(--vermelho),
        0 0 40px var(--vermelho);
    animation: neonFlicker 2s ease-in-out infinite alternate;
}

@keyframes neonFlicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow:
            0 0 5px var(--vermelho),
            0 0 10px var(--vermelho),
            0 0 15px var(--vermelho),
            0 0 20px var(--vermelho),
            0 0 35px var(--vermelho),
            0 0 40px var(--vermelho);
    }

    20%, 24%, 55% {
        text-shadow:
            0 0 2px var(--vermelho),
            0 0 5px var(--vermelho),
            0 0 8px var(--vermelho),
            0 0 12px var(--vermelho),
            0 0 18px var(--vermelho),
            0 0 20px var(--vermelho);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    animation: float 2s ease-in-out infinite;
    cursor: pointer;
    transition: var(--transition-fast);
}

.scroll-down i {
    display: block;
    margin-top: 10px;
    font-size: 1.2rem;
}

.scroll-down:hover {
    color: var(--primary-color);
    transform: translateX(-50%) translateY(-5px);
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.about-content {
    display: block;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    text-align: center;
    padding: 25px 15px;
    background: var(--bg-accent);
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.feature-icon path {
    fill: #d4af37;
    stroke: #d4af37;
}

.feature h4 {
    color: var(--text-light);
    margin-bottom: 10px;
}

.feature p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Link para Matrona Cafés Especiais */
a.branco {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    border-bottom: 1px solid transparent;
}

a.branco:hover {
    color: var(--primary-color) !important;
    border-bottom-color: var(--primary-color) !important;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-large);
}

.quote {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(10, 10, 10, 0.9);
    padding: 20px;
    border-radius: var(--border-radius);
    max-width: 300px;
    backdrop-filter: blur(10px);
}

.quote i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.quote p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 10px;
}

.quote cite {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* ===== MENU SECTION ===== */
.menu {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

/* Menu Gallery */
.menu-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-item-gallery {
    position: relative;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-fast);
    aspect-ratio: 3/4;
}

.menu-item-gallery:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.menu-item-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-fast);
}

.menu-item-gallery:hover img {
    transform: scale(1.05);
    cursor: pointer;
}

/* ===== VIEWERJS CUSTOMIZATION ===== */
.cardapio-viewer .viewer-backdrop {
    background-color: rgba(0, 0, 0, 0.95);
}

.cardapio-viewer .viewer-container {
    font-family: var(--font-primary);
}

.cardapio-viewer .viewer-title {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.cardapio-viewer .viewer-button {
    background: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.cardapio-viewer .viewer-button:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Custom Close Button - Usando fechar.png */
.cardapio-viewer .viewer-close {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    background: url('../../assets/images/fechar.png') center center no-repeat !important;
    background-size: contain !important;
    border: none !important;
    border-radius: 0 !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 1 !important;
    display: block !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    z-index: 10001 !important;
    opacity: 1 !important;
}

.cardapio-viewer .viewer-close:hover {
    transform: scale(1.1) !important;
    opacity: 0.8 !important;
}

.cardapio-viewer .viewer-close:active {
    transform: scale(0.95) !important;
    opacity: 0.6 !important;
}

/* Remover o conteúdo do ::before */
.cardapio-viewer .viewer-close::before {
    content: none !important;
}

.cardapio-viewer .viewer-toolbar {
    background: rgba(0, 0, 0, 0.8);
    border-radius: var(--border-radius);
    padding: 8px;
    backdrop-filter: blur(10px);
}

.cardapio-viewer .viewer-navbar {
    background: rgba(0, 0, 0, 0.8);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.cardapio-viewer .viewer-list > li {
    border: 2px solid transparent;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.cardapio-viewer .viewer-list > li:hover,
.cardapio-viewer .viewer-list > li.viewer-active {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.5);
}

.cardapio-viewer .viewer-tooltip {
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: var(--border-radius);
    font-weight: 600;
    padding: 8px 12px;
    font-size: 0.9rem;
    height: 40px !important;
}

.cardapio-viewer .viewer-loading {
    color: var(--primary-color);
}

/* Hover effect for cardápio images */
.menu-item-gallery {
    position: relative;
    overflow: hidden;
}

.menu-item-gallery::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition-fast);
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.menu-item-gallery:hover::after {
    opacity: 1;
}

.menu-item-gallery:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: var(--transition-fast);
}

/* Responsive adjustments for close button */
@media (max-width: 768px) {
    .cardapio-viewer .viewer-close {
        top: 15px !important;
        right: 15px !important;
        width: 45px !important;
        height: 45px !important;
    }
}

@media (max-width: 480px) {
    .cardapio-viewer .viewer-close {
        top: 10px !important;
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
    }
}

/* ===== ORDER SECTION ===== */
.order {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.delivery-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.delivery-btn {
    background: var(--bg-dark);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-large);
    padding: 30px;
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition-fast);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.delivery-btn:not(:disabled):hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-light);
}

.delivery-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    border-color: var(--text-gray);
}

.delivery-btn-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.delivery-btn-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.delivery-btn:disabled .delivery-btn-icon {
    background: var(--text-gray);
}

.delivery-btn-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-light);
}

.delivery-btn-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* Specific button styles */
.delivery-btn-ifood:not(:disabled):hover {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #dc143c 100%);
}

.delivery-btn-99food:not(:disabled):hover {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #ffd700 100%);
}

.delivery-btn-keeta:not(:disabled):hover {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #00a86b 100%);
}

/* Responsive design */
@media (max-width: 768px) {
    .delivery-buttons {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .delivery-btn {
        padding: 25px;
    }

    .delivery-btn-content {
        gap: 15px;
    }

    .delivery-btn-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .delivery-btn-text h3 {
        font-size: 1.2rem;
    }
}

/* ===== INSTAGRAM SECTION ===== */
.instagram {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.instagram-header {
    text-align: center;
    margin-bottom: 50px;
}

#div-header-instagram{
    margin-bottom: 0;
}

.instagram-handle {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.instagram-handle i {
    color: #E4405F;
    font-size: 1.8rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-fast);
    background: var(--bg-dark);
}

.instagram-post:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-light);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-fast);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(212, 175, 55, 0.9),
        rgba(10, 10, 10, 0.7)
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
    padding: 20px;
    text-align: center;
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.instagram-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    font-weight: 500;
}

.instagram-stat i {
    font-size: 1.2rem;
}

.instagram-caption {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.instagram-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.instagram-loading i {
    margin-right: 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.instagram-error {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-gray);
    background: var(--bg-accent);
    border-radius: var(--border-radius);
    margin: 20px 0;
}

.instagram-error i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(45deg, #E4405F, #F56040);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition-fast);
    margin-top: 20px;
}

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.3);
    color: white;
}

.instagram-follow-btn i {
    font-size: 1.1rem;
}

/* Responsive Instagram */
@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .instagram-handle {
        font-size: 1.3rem;
    }

    .instagram-overlay {
        padding: 15px;
    }

    .instagram-stats {
        gap: 15px;
    }

    .instagram-caption {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .instagram-overlay {
        padding: 10px;
    }

    .instagram-stats {
        gap: 10px;
    }

    .instagram-stat {
        font-size: 0.8rem;
    }
}

/* ===== GALLERY SECTION ===== */
/* Seção comentada - trabalharemos nela futuramente
.gallery {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    color: var(--text-gray);
    border: 2px solid var(--bg-accent);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-fast);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(212, 175, 55, 0.8),
        rgba(10, 10, 10, 0.6)
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--text-light);
    margin-bottom: 10px;
    text-align: center;
}

.gallery-overlay p {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 15px;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--text-light);
}
*/

/* ===== EVENTS SECTION ===== */
/* Seção comentada - trataremos dela depois
.events {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.event-schedule h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.schedule-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-light);
}

.day {
    background: var(--primary-color);
    color: var(--bg-dark);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 60px;
    text-align: center;
}

.event-info h4 {
    color: var(--text-light);
    margin-bottom: 5px;
}

.event-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.time {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 500;
}

.next-events h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.event-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-large);
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.event-date {
    text-align: center;
    min-width: 60px;
}

.event-date .day {
    background: var(--primary-color);
    color: var(--bg-dark);
    padding: 10px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
    display: block;
}

.event-date .month {
    background: var(--bg-accent);
    color: var(--text-light);
    padding: 5px 10px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
}

.event-details h4 {
    color: var(--text-light);
    margin-bottom: 8px;
}

.event-details p {
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.event-time {
    color: var(--primary-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}
*/

/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.reviews-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    overflow: hidden;
}

.review-card {
    background: var(--bg-dark);
    padding: 40px;
    border-radius: var(--border-radius-large);
    text-align: center;
    display: none;
    box-shadow: var(--shadow-medium);
}

.review-card.active {
    display: block;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.reviewer-info h4 {
    color: var(--text-light);
    margin-bottom: 5px;
}

.client-label {
    font-size: 0.8em;
    color: var(--primary-color);
    font-weight: 400;
    font-style: italic;
    opacity: 0.8;
}

.stars {
    display: flex;
    gap: 3px;
}

.stars i {
    color: var(--primary-color);
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-style: italic;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.review-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.nav-btn {
    background: var(--bg-accent);
    color: var(--text-light);
    border: none;
    padding: 12px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.nav-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.review-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-accent);
    cursor: pointer;
    transition: var(--transition-fast);
}

.indicator.active {
    background: var(--primary-color);
}

.review-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat p {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.review-cta {
    text-align: center;
}

.review-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.google-review-info {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    border: 2px solid var(--primary-color);
}

.google-review-info h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.google-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.google-stars i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.google-review-info p {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h3 {
    color: var(--text-light);
    margin-bottom: 8px;
}

.info-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.social-link:hover {
    color: var(--primary-color);
}

.contact-form {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: var(--border-radius-large);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-accent);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-family: var(--font-secondary);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Form Validation Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: #28a745;
    background-color: rgba(40, 167, 69, 0.1);
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    animation: slideDown 0.3s ease;
}

.error-message i {
    margin-right: 5px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Messages */
.form-message {
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.3s ease;
}

.form-message i {
    font-size: 1.2rem;
}

.form-message-error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    color: #dc3545;
}

.form-message-success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid #28a745;
    color: #28a745;
}

/* Checkbox Styles */
.checkbox-group {
    margin: 15px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-text {
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-text i {
    color: #25D366;
    font-size: 1.2rem;
}

.checkbox-label:hover .checkbox-text {
    color: var(--primary-color);
}

.map-container {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-container #google-map {
    border-radius: var(--border-radius-large);
}

/* Remove old iframe filter - no longer needed */

.map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(10, 10, 10, 0.9);
    padding: 20px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.map-overlay h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.map-overlay p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.map-buttons {
    display: flex;
    gap: 8px;
}

.map-buttons .btn {
    background: var(--text-light);
    color: var(--bg-dark);
    border: 2px solid var(--text-light);
    padding: 6px 12px;
    font-size: 0.75rem;
    min-width: auto;
}

.map-buttons .btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-dark);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--bg-accent);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-quote {
    margin-top: 20px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.footer-quote p {
    color: var(--primary-light);
    font-style: italic;
    margin: 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--primary-color);
    margin-top: 5px;
}

.schedule p {
    color: var(--text-gray);
    margin-bottom: 8px;
}

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

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    color: var(--text-gray);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer .social-links a:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--bg-accent);
    color: var(--text-muted);
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* ===== INVESTOR BUTTON ===== */
.btn-investor {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-investor:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.btn-investor:active {
    transform: translateY(0);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== LARGE SCREENS ===== */
@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
        padding: 0 60px;
    }

    .features {
        gap: 30px;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 35px;
    }

    .about-content,
    .events-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .features {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    /* Tablet overflow fixes */
    html {
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
    }

    .container {
        overflow-x: hidden;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-fast);
        overflow-x: hidden;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle.neon-red {
        line-height: 30px;
    }

    .hero-description.branco {
        line-height: 1.4em;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .menu-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-tabs {
        flex-direction: column;
        align-items: center;
    }

    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }

    .review-stats {
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer {
        padding: 40px 0 15px;
    }

    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .footer-logo {
        height: 50px;
        margin-bottom: 15px;
    }

    /* Map adjustment for tablets */
    .map-container #google-map {
        height: 350px !important;
    }
}

@media (max-width: 480px) {
    /* Mobile overflow fixes */
    html {
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Prevent horizontal scroll on mobile */
    *,
    *::before,
    *::after {
        max-width: 100vw;
        box-sizing: border-box;
    }

    /* Responsive media */
    img,
    video,
    iframe {
        max-width: 100%;
        height: auto;
    }

    /* Grid and section fixes */
    section,
    .delivery-buttons,
    .features,
    .menu-gallery,
    .instagram-grid {
        overflow-x: hidden;
        width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .menu-item {
        flex-direction: column;
    }

    .menu-image {
        width: 100%;
        height: 200px;
    }

    .menu-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .review-header {
        flex-direction: column;
        gap: 15px;
    }

    .review-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat h3 {
        font-size: 2rem;
    }

    /* Contact section mobile adjustments */
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .info-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 15px;
        width: 100%;
    }

    .info-item i {
        font-size: 1.2rem;
        min-width: 24px;
        flex-shrink: 0;
    }

    .info-item h3 {
        font-size: 0.85rem;
        margin-bottom: 5px;
        word-wrap: break-word;
    }

    .info-item p {
        font-size: 0.75rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .info-item div {
        flex: 1;
        min-width: 0;
    }

    /* Footer mobile optimizations */
    .footer {
        padding: 30px 0 10px;
    }

    .footer-content {
        gap: 20px;
        margin-bottom: 20px;
    }

    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .footer-section p,
    .footer-section ul li a {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .contact-item p,
    .schedule p {
        font-size: 0.75rem !important;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .contact-item {
        gap: 6px;
        margin-bottom: 8px;
        align-items: flex-start;
    }

    .contact-item i {
        font-size: 0.8rem;
        min-width: 16px;
        margin-top: 3px;
    }

    .schedule p {
        margin-bottom: 6px;
    }

    .footer-logo {
        height: 40px;
        margin-bottom: 10px;
    }

    .footer-quote {
        margin-top: 15px;
        padding: 10px;
    }

    .footer-quote p {
        font-size: 0.75rem;
    }

    .footer .social-links {
        gap: 10px;
        margin-top: 15px;
        justify-content: center;
    }

    .footer .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 15px;
    }

    .footer-bottom p {
        font-size: 0.75rem;
        margin-bottom: 3px;
    }

    /* Contact section footer mobile adjustments */
    .footer .contact-item {
        justify-content: flex-start;
        text-align: left;
        flex-direction: row;
        align-items: flex-start;
    }

    .footer .contact-item p {
        text-align: left;
        margin: 0;
        font-size: 0.75rem !important;
    }

    /* Map height adjustment for mobile */
    .map-container #google-map {
        height: 300px !important;
    }

    /* Hide map overlay on mobile */
    .map-overlay {
        display: none;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

/* ===== COLOR PALETTE CLASSES ===== */
.vermelho {
    color: var(--vermelho) !important;
}

.verde-agua {
    color: var(--verde-agua) !important;
}

.amarelo {
    color: var(--amarelo) !important;
}

.verde {
    color: var(--verde) !important;
}

.laranja {
    color: var(--laranja) !important;
}

.marrom {
    color: var(--marrom) !important;
}

.preto {
    color: var(--preto) !important;
}

.branco {
    color: var(--branco) !important;
}

/* Background color variants */
.bg-vermelho {
    background-color: var(--vermelho) !important;
}

.bg-verde-agua {
    background-color: var(--verde-agua) !important;
}

.bg-amarelo {
    background-color: var(--amarelo) !important;
}

.bg-verde {
    background-color: var(--verde) !important;
}

.bg-laranja {
    background-color: var(--laranja) !important;
}

.bg-marrom {
    background-color: var(--marrom) !important;
}

.bg-preto {
    background-color: var(--preto) !important;
}

.bg-branco {
    background-color: var(--branco) !important;
}

/* Border color variants */
.border-vermelho {
    border-color: var(--vermelho) !important;
}

.border-verde-agua {
    border-color: var(--verde-agua) !important;
}

.border-amarelo {
    border-color: var(--amarelo) !important;
}

.border-verde {
    border-color: var(--verde) !important;
}

.border-laranja {
    border-color: var(--laranja) !important;
}

.border-marrom {
    border-color: var(--marrom) !important;
}

.border-preto {
    border-color: var(--preto) !important;
}

.border-branco {
    border-color: var(--branco) !important;
}

/* ===== JUICER FEED MOBILE STYLES ===== */
@media (max-width: 768px) {
    /* Container do Instagram - centralizado */
    #instagram-feed.instagram-grid {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }

    /* Feed do Juicer - centralizado e ocupando largura completa */
    .instagram-grid ul.juicer-feed,
    ul.juicer-feed[data-feed-id="casadamatrona"] {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
        list-style: none !important;
    }

    /* Posts individuais - maiores e centralizados */
    ul.juicer-feed li.feed-item,
    ul.juicer-feed li,
    .juicer-feed > li {
        width: 90% !important;
        max-width: 450px !important;
        min-width: 300px !important;
        margin: 0 auto 20px auto !important;
        padding: 0 !important;
        flex: none !important;
        display: block !important;
    }

    /* Container interno dos posts */
    ul.juicer-feed li .j-poster,
    ul.juicer-feed li .j-container,
    ul.juicer-feed li > div {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    /* Imagens dos posts - tamanho adequado */
    ul.juicer-feed li .j-image,
    ul.juicer-feed li .j-image img,
    ul.juicer-feed li img,
    ul.juicer-feed .feed-item img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 300px !important;
        aspect-ratio: 1 / 1 !important;
        object-fit: cover !important;
        display: block !important;
    }

    /* Overlay e conteúdo */
    ul.juicer-feed li .j-text,
    ul.juicer-feed li .j-meta {
        width: 100% !important;
    }
}

/* Para telas muito pequenas (menos de 480px) */
@media (max-width: 480px) {
    ul.juicer-feed li.feed-item,
    ul.juicer-feed li,
    .juicer-feed > li {
        width: 95% !important;
        max-width: 100% !important;
        min-width: 280px !important;
    }

    ul.juicer-feed li img,
    ul.juicer-feed .feed-item img {
        min-height: 280px !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .nav-toggle,
    .back-to-top,
    .preloader {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .section-title {
        color: #000;
    }
}