@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #1a1a1a;
    --secondary: #ffffff;
    --accent: #d4af37;
    --accent-light: #f4e4a6;
    --accent-dark: #b8941f;
    --text-light: #4a5568;
    --text-lighter: #718096;
    --text-dark: #2d3748;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --background: #ffffff;
    --shadow-light: rgba(0, 0, 0, 0.04);
    --shadow-medium: rgba(0, 0, 0, 0.08);
    --gradient-primary: var(--accent);
    --gradient-overlay: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--primary);
}

.title-font {
    font-family: 'Playfair Display', serif;
}



/* Hero background with parallax effect */
.hero {
    background: var(--gradient-overlay), url('../images/sala-01.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: -1;
}

/* Blur effect for hero background */
.hero-with-blur::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
    z-index: 0;
}

.hero-with-blur > * {
    position: relative;
    z-index: 1;
}


/* Clean glass navbar - fixed position */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: 9999 !important;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--border-light);
}

.navbar a {
    position: relative;
    transition: color 0.3s ease;
}

.navbar a:not(.btn-primary):hover {
    color: var(--accent);
}

.navbar a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

/* Clean glass card design - no hover */
.card-modern {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Menu item animations */
.menu-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.menu-item:nth-child(2) {
    animation-delay: 0.1s;
}

.menu-item:nth-child(3) {
    animation-delay: 0.2s;
}

.menu-item:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botões agora definidos no Tailwind (tailwind-input.css) */

/* Links da navbar com hover accent */
.nav-link:hover {
    color: #d4af37 !important;
}

/* Linhas do hamburger menu */
.hamburger-line {
    background-color: #1a1a1a;
    display: block;
    transition: all 0.3s ease;
}

/* Botão hamburger hover */
#mobile-menu-toggle:hover .hamburger-line {
    background-color: #d4af37;
}

/* Section reveals */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Menu tabs agora usam apenas Tailwind CSS */

/* Price styling */
.price {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Modern form styling */
.form-modern {
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.form-modern:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    transform: translateY(-1px);
}

.form-modern:hover:not(:focus) {
    border-color: var(--accent-light);
}

.form-modern.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Form labels */
label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
}

/* Image overlays */
.image-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 8px 30px var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    transition: all 0.4s ease;
}

.image-overlay:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.image-overlay:hover::after {
    opacity: 0;
}

.image-overlay img {
    transition: transform 0.4s ease;
}

.image-overlay:hover img {
    transform: scale(1.05);
}

/* Scroll indicator - REMOVED */

/* Typography enhancements */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 300;
}

.hero h1 {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease forwards;
}

.hero p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1.4s ease forwards;
}

/* Section spacing improvements */
section {
    position: relative;
}

section:nth-child(even) {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

/* Menu item styling improvements */
.menu-category {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 30px var(--shadow-light);
    border: 1px solid var(--border-light);
}

.menu-category .py-2 {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.menu-category .py-2:hover {
    background: rgba(212, 175, 55, 0.05);
    padding-left: 1rem;
    border-radius: 12px;
    border-bottom: 1px solid transparent;
    margin: 0 -1rem;
}

.menu-category h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: var(--primary);
}

.menu-category .text-xl {
    font-size: 1.3rem;
}

/* Menu item overflow prevention */
.menu-category h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.menu-category p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Stats section styling */
.stats-item {
    text-align: center;
    padding: 1rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stats-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* Clean glass contact cards - no hover */
.contact-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-card .icon-wrapper i {
    font-size: 1.5rem;
    color: var(--accent-dark);
}

/* Loading animations */
.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Floating elements */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Chevron bottom positioning */
.chevron-bottom {
    bottom: -6rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .chevron-bottom {
        bottom: -4rem;
    }
    
    .hero {
        background-attachment: scroll;
        padding: 2rem 0;
    }

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

    .card-modern {
        padding: 2rem;
        margin: 0 1rem;
        border-radius: 20px;
    }

    .menu-category {
        padding: 2rem;
        margin: 0 1rem;
    }

    .menu-category h3 {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .menu-category .text-xl {
        font-size: 1.1rem;
    }

    .menu-category p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .menu-category .py-2 {
        padding: 1rem 0;
    }

    .btn-primary {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    /* menu-tab responsive agora no Tailwind */

    .contact-card .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .contact-card .icon-wrapper i {
        font-size: 1.5rem;
    }
}

/* Entrance animations */
.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 1s ease forwards;
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Botão de reserva mobile agora usa apenas Tailwind CSS */

/* Hamburger menu agora usa apenas Tailwind CSS */


/* Mobile Menu Container */
.mobile-menu-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    overflow-y: auto;
}

body.mobile-menu-active {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

body.mobile-menu-active .mobile-menu-container {
    opacity: 1;
    visibility: visible;
}

/* Botão de fechar menu mobile */
#mobile-menu-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

#mobile-menu-close:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-link {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: var(--accent);
}

/* Responsivo para mobile menu */
@media (max-width: 640px) {
    .mobile-menu-link {
        font-size: 2rem;
    }

    #mobile-menu-close {
        top: 1rem;
        right: 1rem;
    }
}

/* Mo
dern Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal.delay-1 {
    transition-delay: 0.1s;
}

.scroll-reveal.delay-2 {
    transition-delay: 0.2s;
}

.scroll-reveal.delay-3 {
    transition-delay: 0.3s;
}

/* Typography enhancements - force white text in hero */
.hero h1 {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1.2s ease forwards;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.4s ease forwards;
}

.hero span {
    color: white;
}


/* Removed FAB for cleaner design */

/* Clean glass menu category */
.menu-category {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.menu-category h3 {
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.menu-category p {
    color: var(--text-light);
}

.menu-category .text-xl {
    font-size: 1.3rem;
    color: var(--text-dark);
}

.menu-category .py-2:hover {
    background: rgba(212, 175, 55, 0.1);
    padding-left: 1rem;
    border-radius: 8px;
    border-bottom: 1px solid transparent;
    margin: 0 -1rem;
}

/* Parallax Sections */
.parallax-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}

.parallax-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    pointer-events: none;
}

/* Enhanced Image Overlays */
.image-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%, rgba(212, 175, 55, 0.1) 100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-overlay:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.image-overlay:hover::after {
    opacity: 0.5;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
}

/* Micro-interactions */
.interactive-element {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-element:hover {
    transform: translateY(-2px);
}

/* Enhanced Stats Items */
.stats-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stats-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.stats-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.stats-item:hover::before {
    opacity: 1;
}

/* Loading Spinner Enhancement */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-top: 4px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

/* Smooth Page Transitions */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    animation: pageEnter 0.6s ease forwards;
}

@keyframes pageEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .card-modern {
        padding: 2rem;
        margin: 0 0.5rem;
        border-radius: 24px;
    }

    .menu-category {
        padding: 2rem;
        margin: 0 0.5rem;
        border-radius: 24px;
    }

    .contact-card {
        padding: 2rem;
        border-radius: 24px;
    }

    .contact-card .icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .fab {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }
}

/* Dark Mode Support (Future Enhancement) */
@media (prefers-color-scheme: dark) {
    :root {
        --primary: #ffffff;
        --secondary: #1a1a1a;
        --text-light: #a0a0a0;
        --text-dark: #e0e0e0;
        --border: #333333;
        --border-light: #2a2a2a;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }
}

/* Focus States for Better Accessibility */
.btn-primary:focus,
.form-modern:focus {
    outline: 3px solid rgba(212, 175, 55, 0.5);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {

    .card-modern,
    .contact-card,
    .menu-category {
        border: 2px solid var(--accent);
    }
}

/* Cl
ean, minimal design improvements */
body {
    background-color: var(--background);
    color: var(--text-dark);
}

/* Clean form inputs with visible borders */
.form-modern {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    color: #2d3748;
    font-size: 1rem;
}

.form-modern:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-modern:hover {
    border-color: #9ca3af;
}

/* Consistent text colors - dark gray */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #2d3748;
}

p {
    color: #4a5568;
}

/* Ensure menu text is visible */
.menu-category h3,
.menu-category .text-xl {
    color: #2d3748;
}

.menu-category p,
.menu-category .text-gray-600 {
    color: #4a5568;
}

/* Clean section backgrounds */
section {
    background: var(--background);
}

section:nth-child(even) {
    background: #fafafa;
}

/* Remove excessive shadows */
.shadow-light {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Consistent accent color usage */
.text-accent {
    color: var(--accent);
}

/* Clean image overlays */
.image-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.image-overlay:hover {
    transform: scale(1.02);
}

.image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
    transition: all 0.3s ease;
}

.image-overlay:hover::after {
    opacity: 0;
}

/* Stats items - simple, no hover */
.stats-item {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
}

/* Clean mobile menu */
.mobile-menu-container {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
}

.mobile-menu-link {
    color: white;
}

.mobile-menu-link:hover {
    color: var(--accent);
}

/* Consistent button styling */
.btn-primary:focus {
    outline: 3px solid rgba(212, 175, 55, 0.3);
    outline-offset: 2px;
}

/* Clean error states */
.form-modern.is-invalid {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.required-asterisk {
    color: #e74c3c;
    margin-left: 0.25rem;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        padding: 2rem 0;
    }

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

    .card-modern {
        padding: 2rem;
        margin: 0 1rem;
        border-radius: 12px;
    }

    .menu-category {
        padding: 2rem;
        margin: 0 1rem;
    }

    .contact-card {
        padding: 2rem;
        border-radius: 12px;
    }

    .contact-card .icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .contact-card .icon-wrapper i {
        font-size: 1.2rem;
    }
}


/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }
}

/* Ensure navbar stays fixed */
.fixed {
    position: fixed;
}

/* Clean border styling */
.border-dotted {
    border-style: dotted;
    border-color: #d1d5db;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.border-gray-300 {
    border-color: #d1d5db;
}

/* Nav
bar text colors */
.navbar a {
    color: #2d3748;
}

.navbar a:hover {
    color: var(--accent);
}

/* Card text colors */
.card-modern h3 {
    color: #2d3748;
}

.card-modern p {
    color: #4a5568;
}

/* Contact card text colors */
.contact-card h3 {
    color: #2d3748;
}

.contact-card p,
.contact-card a {
    color: #4a5568;
}

.contact-card a:hover {
    color: var(--accent);
}

/* Remove any remaining hover effects */
.reveal:hover {
    transform: none;
}

/* Ensure all text is readable */
body {
    color: #2d3748;
}

/* Override any Tailwind classes that might be too light */
.text-center {
    color: inherit;
}

.leading-relaxed {
    color: inherit;
}

/* Spec
ific form input styling */
input.form-modern,
textarea.form-modern,
select.form-modern {
    border: 1px solid #d1d5db;
    background: rgba(255, 255, 255, 0.9);
    color: #2d3748;
}

input.form-modern:focus,
textarea.form-modern:focus,
select.form-modern:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* Placeholder styling */
input.form-modern::placeholder,
textarea.form-modern::placeholder {
    color: #9ca3af;
}

/* Select dropdown styling */
select.form-modern {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* Textarea specific */
textarea.form-modern {
    min-height: 120px;
    resize: vertical;
}

/* Form labels */
label {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

/* Error states */
.form-modern.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Required asterisk */
.required-asterisk {
    color: #ef4444;
    margin-left: 0.25rem;
}

/* Footer text colors - force white */
footer {
    background: #1a202c;
    margin: 0;
    padding-bottom: 0;
}

footer h3,
footer h4,
footer p,
footer span,
footer div {
    color: white;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
}

footer a:hover {
    color: var(--accent);
}

footer .text-gray-400 {
    color: rgba(255, 255, 255, 0.7);
}

footer .text-white {
    color: white;
}

/* Ícones das redes sociais no footer - apenas nos círculos */
footer a.rounded-full {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

footer a.rounded-full i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    footer a.rounded-full i {
        font-size: 0.9rem;
    }
}

/* Hero section text - ensure all text is white (except buttons with specific colors) */
.hero h1,
.hero h2,
.hero h3,
.hero p,
.hero span:not(.btn *),
.hero div:not(.btn) {
    color: white;
}

.hero .text-yellow-400,
.hero [style*="color: #d4af37"] {
    color: #d4af37 !important;
}

.hero .uppercase {
    color: rgba(255, 255, 255, 0.8);
}

/* Permitir cores personalizadas em botões dentro do hero */
.hero .btn.text-black,
.hero .text-black {
    color: #1a1a1a !important;
}

/* 
Force navbar to be fixed - override Tailwind */
nav.navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    z-index: 9999;
}

/* Body without padding - navbar is not fixed */
body {
    padding-top: 0;
}

/* Debug - make sure navbar is visible */
.navbar {
    display: block;
    visibility: visible;
}

/* Navbar scroll effect enhancement */
.navbar.scrolled {
    transform: translateY(0);
}

/* Popu
p Evento Especial */
#evento-popup {
    transition: opacity 0.3s ease;
}

.animate-fade-in {
    animation: fadeInScale 0.4s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

#evento-popup .bg-white {
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Scrollbar personalizada para o popup */
#evento-popup .overflow-y-auto::-webkit-scrollbar {
    width: 8px;
}

#evento-popup .overflow-y-auto::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#evento-popup .overflow-y-auto::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 10px;
}


/* Menu tabs e submenu tabs agora definidos no Tailwind (tailwind-input.css) */

.submenu-content {
    animation: fadeInSlide 0.5s ease;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Popup Evento Especial - Postal Minimalista */
#evento-popup {
    transition: opacity 0.3s ease;
}

/* Bloquear scroll quando popup está ativo */
body.popup-active {
    overflow: hidden;
    height: 100vh;
}

/* Card Postal com efeito glass */
.evento-card-postal {
    animation: fadeInPostal 0.5s ease-out;
}

@keyframes fadeInPostal {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Efeito glass no card */
.evento-card-postal .bg-white\/95 {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Hover suave na imagem */
.evento-card-postal img {
    transition: transform 0.3s ease;
}

.evento-card-postal:hover img {
    transform: scale(1.02);
}

/* Scrollbar personalizada para o popup */
#evento-popup::-webkit-scrollbar {
    width: 8px;
}

#evento-popup::-webkit-scrollbar-track {
    background: transparent;
}

#evento-popup::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 10px;
}

#evento-popup::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.7);
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .evento-card-postal .grid {
        grid-template-columns: 1fr;
    }

    .evento-card-postal .p-8 {
        padding: 1.5rem;
    }
}

/* Botões do hero agora usam apenas Tailwind CSS */

/* Botões de formulário agora usam apenas Tailwind CSS */