/* Tailwind CSS Essencial - Mantendo Visual Original */
/* Reset e Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #1a0a0f 0%, #0f0809 50%, #0a0607 100%);
    position: relative;
}

body, section, .bg-custom-dark {
    background-color: #211a1d !important;
}

/* Efeito sutil de textura no fundo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(141, 12, 44, 0.03) 0%, transparent 70%),
        radial-gradient(circle at 90% 80%, rgba(107, 10, 33, 0.04) 0%, transparent 70%),
        radial-gradient(circle at 50% 50%, rgba(69, 10, 10, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

html, body {
  overflow-x: hidden !important;
}

nav .flex {
    flex-wrap: nowrap;
}

/* Container System */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Grid System */
.grid {
    display: grid;
    gap: 1rem;
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Flexbox */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-shrink-0 { flex-shrink: 0; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Positioning */
.fixed { position: fixed; }
.relative { position: relative; }
.absolute { position: absolute; }
.top-0 { top: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-50 { z-index: 50; }

/* Sizing */
.w-full { width: 100%; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-6 { width: 1.5rem; }
.w-5 { width: 1.25rem; }
.w-4 { width: 1rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-6 { height: 1.5rem; }
.h-5 { height: 1.25rem; }
.h-4 { height: 1rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.min-h-screen { min-height: 100vh; }
.min-h-\[80vh\] { min-height: 80vh; }

/* Responsive Sizing */
@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
}

/* Positioning */
.bottom-6 { bottom: 1.5rem; }
.right-6 { right: 1.5rem; }

@media (min-width: 768px) {
    .md\:w-\[28rem\] { width: 28rem; }
    .md\:h-\[32rem\] { height: 32rem; }
    .md\:w-\[32rem\] { width: 32rem; }
}

/* Spacing */
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-20 { padding-top: 5rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-20 { padding-bottom: 5rem; }
.pl-6 { padding-left: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Typography */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }

@media (min-width: 768px) {
    .md\:text-3xl { font-size: 1.875rem; }
    .md\:text-6xl { font-size: 3.75rem; }
    .md\:text-7xl { font-size: 4.5rem; }
    .md\:text-left { text-align: left; }
    .md\:justify-start { justify-content: flex-start; }
    .md\:col-span-2 { grid-column: span 2 / span 2; }
    .md\:mx-0 { margin-left: 0; margin-right: 0; }
}

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-light { font-weight: 300; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }
.tracking-wide { letter-spacing: 0.025em; }
.no-underline { text-decoration: none; }

/* Colors - Nova paleta vinho #8d0c2c */
.text-white { color: #ffffff; }

/* Estilo para o menu de navegação */
nav a {
    color: white !important;
}

.text-gray-200 { color: #e5e7eb; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-purple-100 { color: #f4c2c2; }
.text-purple-200 { color: #e8a5a5; }
.text-purple-300 { color: #8d0c2c; }
.text-purple-400 { color: #8d0c2c; }
.text-yellow-300 { color: #fde047; }
.text-yellow-400 { color: #fbbf24; }
.text-green-300 { color: #86efac; }
.text-green-400 { color: #4ade80; }
.text-green-500 { color: #22c55e; }
.text-pink-400 { color: #8d0c2c; }
.text-red-300 { color: #e8a5a5; }
.text-red-400 { color: #8d0c2c; }
.text-red-500 { color: #8d0c2c; }
.text-red-200 { color: #f4c2c2; }
.text-blue-light { color: #a5c4ff; }

/* Fill colors para ícones */
.fill-yellow-400 { fill: #fbbf24; }

/* Backgrounds - Mantendo cores originais */
.bg-black { background-color: #000000; }
.bg-white { background-color: #ffffff; }
.bg-black\/20 { background-color: rgba(0, 0, 0, 0.2); }
.bg-black\/30 { background-color: rgba(0, 0, 0, 0.3); }
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-black\/80 { background-color: rgba(0, 0, 0, 0.8); }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-green-500 { background-color: #22c55e; }
.bg-green-600 { background-color: #16a34a; }
.bg-purple-400 { background-color: #c084fc; }
.bg-dark-blue { background-color: #1b212d; }
.bg-dark-blue-hover { background-color: #232a38; }
.bg-purple-500\/20 { background-color: rgba(168, 85, 247, 0.2); }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-900 { background-color: #111827; }
.bg-gray-750 { background-color: #374151; }

/* Gradients - Mantendo originais */
.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-purple-900 { --tw-gradient-from: #581c87; --tw-gradient-to: rgba(88, 28, 135, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-gray-900 { --tw-gradient-to: rgba(17, 24, 39, 0); --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to); }
.to-black { --tw-gradient-to: #000000; }
.from-purple-600 { --tw-gradient-from: #9333ea; --tw-gradient-to: rgba(147, 51, 234, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-pink-600 { --tw-gradient-to: #db2777; }
.from-purple-700 { --tw-gradient-from: #7c3aed; --tw-gradient-to: rgba(124, 58, 237, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-pink-700 { --tw-gradient-to: #be185d; }
.from-pink-600 { --tw-gradient-from: #db2777; --tw-gradient-to: rgba(219, 39, 119, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-purple-600 { --tw-gradient-to: #9333ea; }
.from-purple-900\/50 { --tw-gradient-from: rgba(88, 28, 135, 0.5); --tw-gradient-to: rgba(88, 28, 135, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-gray-900\/50 { --tw-gradient-to: rgba(17, 24, 39, 0.5); }
.from-gray-900\/50 { --tw-gradient-from: rgba(17, 24, 39, 0.5); --tw-gradient-to: rgba(17, 24, 39, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-purple-900\/50 { --tw-gradient-to: rgba(88, 28, 135, 0.5); }
.from-pink-600\/80 { --tw-gradient-from: rgba(219, 39, 119, 0.8); --tw-gradient-to: rgba(219, 39, 119, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-purple-600\/80 { --tw-gradient-to: rgba(147, 51, 234, 0.8); }
.from-purple-900\/80 { --tw-gradient-from: rgba(88, 28, 135, 0.8); --tw-gradient-to: rgba(88, 28, 135, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-transparent { --tw-gradient-to: transparent; }

/* Borders */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-l-4 { border-left-width: 4px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-purple-400 { border-color: #8d0c2c; }
.border-purple-500 { border-color: #8d0c2c; }
.border-white { border-color: #ffffff; }
.border-gray-700 { border-color: #374151; }
.border-purple-500\/20 { border-color: rgba(141, 12, 44, 0.2); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Effects */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }

/* Transitions - 70% mais rápidas */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 10ms;
}
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 10ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 10ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 10ms; }
.duration-300 { transition-duration: 33ms; } /* 89% mais rápido que 300ms (original) */

/* Hover Effects - Nova paleta vinho #8d0c2c */
.hover\:text-purple-400:hover { color: #8d0c2c; }
.hover\:text-red-400:hover { color: #8d0c2c; }
.hover\:text-white:hover { color: #ffffff; }
.hover\:from-purple-700:hover { --tw-gradient-from: #8d0c2c; --tw-gradient-to: rgba(141, 12, 44, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.hover\:to-pink-700:hover { --tw-gradient-to: #6b0a21; }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }
.hover\:bg-green-600:hover { background-color: #16a34a; }
.hover\:bg-purple-400:hover { background-color: #8d0c2c; }
.hover\:bg-gray-750:hover { background-color: #374151; }

.group:hover .group-hover\:text-purple-200 { color: #e9d5ff; }
.group:hover .group-hover\:text-green-200 { color: #bbf7d0; }
.group:hover .group-hover\:text-gray-200 { color: #e5e7eb; }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline { display: inline; }
.inline-flex { display: inline-flex; }

@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
}

/* Object Fit */
.object-cover { object-fit: cover; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }

/* Max Width */
.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

/* Gap */
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Max Width */
.max-w-lg { max-width: 32rem; }

/* Custom Animations - Otimizadas com mais movimento e velocidade */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.6);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes typewriter {
    0%, 100% { width: 0; }
    20%, 80% { width: 100%; }
}

@keyframes typewriter-once {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes blink {
    0%, 100% { border-right-color: transparent; }
    50% { border-right-color: #d8b4fe; }
}

.animate-fade-in-up {
    animation: fadeInUp 0.066s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.066s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.066s ease-out;
}

.animate-bounce-float {
    animation: bounceFloat 2s ease-in-out infinite;
}

.typewriter {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #d8b4fe;
    width: 0;
    animation: typewriter-once 2s steps(14) forwards, blink 0.75s step-end infinite;
}

.text-gradient-purple-pink {
    background: linear-gradient(to right, #d8b4fe, #f9a8d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Custom Hover Effects - Mantendo originais */
.hover-elevate:hover {
    transform: translateY(-5px);
}

.hover-elevate-card:hover {
    transform: translateY(-10px);
}

.backdrop-blur-glass {
    backdrop-filter: blur(10px);
}

/* ================= CARDS DOS SERVIÇOS HARMONIOSOS ================= */

/* Estilo base dos cards de serviços - SEMPRE com aparência destacada */
.service-card {
    /* Aplicando permanentemente o estilo que antes era só no hover */
    background-color: #211a1d;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(141, 12, 44, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    /* Sombra sempre destacada */
    box-shadow: 0 20px 60px rgba(141, 12, 44, 0.15), 0 8px 32px rgba(0, 0, 0, 0.2);
    /* Leve elevação permanente */
    transform: translateY(-4px) scale(1.01);
}

/* Efeito de brilho sutil no card */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

/* Hover effect ainda mais destacado */
.service-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(141, 12, 44, 0.7);
    box-shadow: 0 25px 80px rgba(141, 12, 44, 0.2), 0 12px 40px rgba(0, 0, 0, 0.25);
}

.service-card:hover::before {
    left: 100%;
}

/* Título do serviço com gradiente - SEMPRE destacado */
.service-title {
    /* Aplicando permanentemente o gradiente mais claro */
    background: linear-gradient(135deg, #b91c3c 0%, #dc2626 50%, #fca5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    /* Leve escala permanente */
    transform: scale(1.02);
}

.service-card:hover .service-title {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #fca5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.08);
}

/* Descrição do serviço - SEMPRE com cor mais clara */
.service-description {
    /* Cor permanentemente mais clara */
    color: #e5e7eb;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-description {
    color: #f3f4f6;
}

/* Preço do serviço - SEMPRE destacado */
.service-price {
    /* Cor permanentemente mais clara e com escala */
    color: #86efac;
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    /* Sombra permanente */
    text-shadow: 0 4px 16px rgba(74, 222, 128, 0.4);
    /* Leve escala permanente */
    transform: scale(1.05);
}

.service-card:hover .service-price {
    color: #bbf7d0;
    transform: scale(1.15);
    text-shadow: 0 6px 20px rgba(74, 222, 128, 0.5);
}

/* Animação de entrada dos cards */
.service-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsividade dos cards */
@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-price {
        font-size: 1.5rem;
    }
}

/* Custom Backgrounds - Nova paleta vinho #8d0c2c */
.bg-gradient-purple-pink {
    background: linear-gradient(135deg, #8d0c2c 0%, #6b0a21 100%);
}

.text-gradient-purple-pink {
    background: linear-gradient(135deg, #c53030 0%, #e53e3e 50%, #fc8181 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradiente mais claro para títulos principais */
.text-gradient-wine-light {
    background: linear-gradient(135deg, #b91c3c 0%, #dc2626 50%, #f87171 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradiente suave para subtítulos */
.text-gradient-wine-soft {
    background: linear-gradient(135deg, #8d0c2c 0%, #c53030 50%, #fca5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradiente dourado para "Olá, eu sou a Ayla" */
.text-gradient-golden {
    background: linear-gradient(135deg, #fff9c4 0%, #ffeaa7 30%, #fdcb6e 60%, #e17055 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fundo vinho MAIS ESCURO com gradiente puxado pro roxo - HERO */
.hero-section {
    background: linear-gradient(135deg, #6b0a21 0%, #5a1528 30%, #4a1225 60%, #3a0f1f 85%, #1f0a15 100%);
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho sutil na hero */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

/* Efeito de partículas/textura no fundo da hero */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                      radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
                      radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    opacity: 0.3;
    pointer-events: none;
}

/* ================= EFEITO DE TRANSIÇÃO BLUR ENTRE SEÇÕES REMOVIDO ================= */

/* Ajustes básicos de posicionamento sem efeito blur */
.hero-section {
    position: relative;
}

/* Removido o efeito de transição blur */

/* Ajuste para a próxima seção */
#servicos {
    background-color: #211a1d;
    position: relative;
}

/* CTA Final com fundo vinho e gradiente */
.cta-final-section {
    background: linear-gradient(135deg, #8d0c2c 0%, #6b0a21 30%, #450a0a 70%, #2d0a0a 100%);
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho sutil no CTA final */
.cta-final-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

/* Efeito de partículas/textura no fundo */
.cta-final-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                      radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
                      radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    opacity: 0.3;
    pointer-events: none;
}

/* AOS Animations - Mantendo originais */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 1s; /* Duração aumentada */
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Easing suave */
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(60px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(60px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-120px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.7);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* AOS Delays */
[data-aos-delay="100"] {
    transition-delay: 0.1s;
}

[data-aos-delay="200"] {
    transition-delay: 0.2s;
}

[data-aos-delay="300"] {
    transition-delay: 0.3s;
}

[data-aos-delay="400"] {
    transition-delay: 0.4s;
}

[data-aos-delay="500"] {
    transition-delay: 0.5s;
}

[data-aos-delay="600"] {
    transition-delay: 0.6s;
}

[data-aos-delay="700"] {
    transition-delay: 0.7s;
}

[data-aos-delay="800"] {
    transition-delay: 0.8s;
}

/* Loading States para imagens */
.lazy-image {
    transition: opacity 0.3s ease;
}

.lazy-image.loaded {
    opacity: 1;
}

.img-loading {
    background: linear-gradient(90deg, #374151 25%, #4b5563 50%, #374151 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

/* Performance Optimizations */
.will-change-transform {
    will-change: transform;
}

.gpu-accelerated {
    transform: translateZ(0);
}

.preco-promocional {
    color: green;
}

.preco-antigo {
    color: red;
    text-decoration: line-through;
}

/* Botão principal estilizado */
.btn-principal {
  background: linear-gradient(90deg, #8d0c2c 0%, #6b0a21 100%);
  color: #fff;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 2rem;
  font-size: 1.15rem;
  font-weight: 600;
  box-shadow: 0 4px 24px 0 rgba(141, 12, 44, 0.15), 0 1.5px 6px 0 rgba(107, 10, 33, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  outline: none;
}
.btn-principal:hover, .btn-principal:focus {
  filter: brightness(1.08) saturate(1.2);
  box-shadow: 0 8px 32px 0 rgba(141, 12, 44, 0.25), 0 3px 12px 0 rgba(107, 10, 33, 0.18);
  transform: scale(1.04);
}

/* Botão secundário estilizado com gradiente dourado */
.btn-secundario {
  background: transparent;
  color: #fdcb6e;
  border: 2px solid #fdcb6e;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  font-size: 1.15rem;
  font-weight: 600;
  box-shadow: 0 2px 12px 0 rgba(253, 203, 110, 0.15);
  transition: all 0.2s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  outline: none;
}
.btn-secundario:hover, .btn-secundario:focus {
  background: linear-gradient(90deg, #fdcb6e 0%, #e17055 100%);
  color: #fff;
  border-color: #e17055;
  box-shadow: 0 6px 24px 0 rgba(253, 203, 110, 0.25);
  transform: scale(1.04);
}

/* HERO maior no mobile */
@media (max-width: 767px) {
  .hero-section {
    min-height: 110vh !important;
    padding-top: 8rem !important;
    padding-bottom: 6rem !important;
  }
  
  /* Mais espaçamento entre botões e foto no mobile */
  .hero-section .flex {
    gap: 0.5rem !important;
    justify-content: center !important;
  }
}

/* Alinhamento específico para desktop na hero */
@media (min-width: 768px) {
  .hero-section .flex {
    justify-content: flex-start !important;
  }
  
  /* Força alinhamento à esquerda no desktop */
  .hero-section div[data-aos="fade-right"] {
    text-align: left !important;
  }
  
  .hero-section div[data-aos="fade-right"] h1,
  .hero-section div[data-aos="fade-right"] h2,
  .hero-section div[data-aos="fade-right"] p {
    text-align: left !important;
  }
  
  /* Força específica para todos os elementos de texto na hero */
  .hero-section .text-center {
    text-align: left !important;
  }
  
  /* Sobrescreve qualquer classe Tailwind */
  section#inicio div.text-center {
    text-align: left !important;
  }
  
  /* Força máxima especificidade para desktop */
  section#inicio.hero-section div[data-aos="fade-right"].text-center {
    text-align: left !important;
  }
  
  section#inicio.hero-section div[data-aos="fade-right"].text-center h1,
  section#inicio.hero-section div[data-aos="fade-right"].text-center h2,
  section#inicio.hero-section div[data-aos="fade-right"].text-center p {
    text-align: left !important;
  }
  #mobile-menu-button {
    margin-left: 0;
    margin-right: 2.5rem;
    display: block;
    padding-left: 0;
    padding-right: 0;
    left: auto;
    right: 0;
    position: relative;
  }
  #mobile-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 60px;
    z-index: 100;
    width: 100vw;
    max-width: 100vw;
    border-radius: 0 0 1rem 1rem;
    background: rgba(0,0,0,0.95);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    text-align: center;
    padding: 2rem 1rem 1.5rem 1rem;
    overflow-x: hidden;
  }
  #mobile-menu a {
    font-size: 1.2rem;
    padding: 1rem 0;
    display: block;
  }
  .md\:flex {
    display: none !important;
  }
}

/* Imagens responsivas da hero */
.hero-image-desktop {
  display: none;
}

.hero-image-mobile {
  display: block;
}

@media (min-width: 768px) {
  .hero-image-desktop {
    display: block;
  }
  
  .hero-image-mobile {
    display: none;
  }
}

/* ================= GALERIA COM ABAS E CARROSSEL ================= */

/* Estilos das abas harmoniosas */
.tab-button {
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tab-button.active {
  background: linear-gradient(135deg, #b91c3c 0%, #dc2626 50%, #f87171 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(185, 28, 60, 0.25), 0 4px 10px rgba(220, 38, 38, 0.12);
  transform: translateY(-2px);
}

.tab-button:hover:not(.active) {
  color: #b91c3c;
  transform: translateY(-1px);
  background: rgba(185, 28, 60, 0.08);
}

.tab-button:active {
  transform: translateY(0);
}

/* Estilos do carrossel */
.carrossel-container {
  transition: opacity 0.3s ease;
}

.carrossel-container.hidden {
  display: none;
}

.carrossel-container.active {
  display: block;
}

.carrossel-track {
  position: relative;
  width: 100%;
}

.carrossel-slides {
  display: flex;
  width: 100%;
}

.carrossel-slide {
  transition: transform 0.3s ease;
}

/* Botões de navegação */
.carrossel-btn {
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carrossel-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

.carrossel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

/* Responsividade do carrossel */
@media (max-width: 767px) {
  .carrossel-slide {
    width: 100% !important;
  }
  
  .carrossel-slide .relative {
    height: 32rem !important;
  }
  
  .carrossel-btn {
    width: 40px !important;
    height: 40px !important;
  }
  
  .carrossel-btn svg {
    width: 20px !important;
    height: 20px !important;
  }
  
  /* Transição super rápida no mobile */
  .carrossel-slides {
    transition: transform 0.1s ease-out !important;
  }
}

@media (min-width: 768px) {
  .carrossel-slide {
    width: 33.333% !important;
  }
  
  .carrossel-slide .relative {
    height: 32rem !important;
  }
}

/* Espaçamento maior entre slides do carrossel */
.carrossel-slide {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

/* Setas do carrossel menores e mais próximas */
.carrossel-btn {
  background: #000 !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25) !important;
  border: 3px solid #fff;
  width: 3rem !important;   /* 48px */
  height: 3rem !important;  /* 48px */
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.carrossel-btn svg {
  color: #fff !important;
  stroke: #fff !important;
  width: 1.5rem !important;  /* 24px */
  height: 1.5rem !important; /* 24px */
}

.carrossel-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(147, 51, 234, 0.25), 0 3px 12px 0 rgba(219, 39, 119, 0.18);
  border-color: #a855f7;
}

/* Indicadores dos slides */
.slide-indicator {
  transition: all 0.3s ease;
}

.slide-indicator:hover {
  transform: scale(1.2);
  background-color: #a855f7 !important;
}

.slide-indicator.active {
  background-color: #9333ea !important;
  transform: scale(1.1);
}

/* Estilos para setas desabilitadas */
.carrossel-btn.disabled {
  opacity: 0.3 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

.carrossel-btn.disabled:hover {
  transform: none !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25) !important;
}

.carrossel-btn.disabled svg {
  opacity: 0.5 !important;
}

/* Estilos para o modal de imagem */
#image-modal {
  backdrop-filter: blur(8px);
  transition: opacity 0.3s ease;
}

#image-modal img {
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

#image-modal img:hover {
  transform: scale(1.02);
}

/* Cursor pointer para as imagens do carrossel */
.carrossel-slide img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.carrossel-slide img:hover {
  transform: scale(1.05);
}

/* Setas sobre as fotos do carrossel */
.carrossel-track .absolute {
  z-index: 20;
}
.carrossel-track .carrossel-btn {
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.7) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important;
}
.carrossel-track .carrossel-btn:hover {
  background: rgba(147, 51, 234, 0.8) !important;
  border-color: rgba(255,255,255,0.5) !important;
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .carrossel-track .prev-btn {
    left: 2px !important;
    width: 40px !important;
    height: 40px !important;
  }
  .carrossel-track .next-btn {
    right: 2px !important;
    width: 40px !important;
    height: 40px !important;
  }
}

/* Sublinhado dourado com gradiente para títulos de seção */
.section-title-underline {
    display: inline-block;
    position: relative;
}
.section-title-underline::after {
    content: '';
    display: block;
    height: 6px;
    width: 80px;
    margin: 0 auto;
    margin-top: 8px;
    border-radius: 3px;
    background: linear-gradient(90deg, #fff9c4 0%, #ffeaa7 30%, #fdcb6e 60%, #e17055 100%);
}
