* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    color: #E0E0E0;
}

:root {
    --primary-color: #22C55E;
    --secondary-color: #115E59;
    --background: #0A0A0A;
    --text-light: #E0E0E0;
    --text-dark: #B0B0B0;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --neon-glow: 0 0 15px var(--primary-color), 0 0 30px var(--primary-color), 0 0 45px var(--primary-color);
}

body {
    background: var(--background);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    pointer-events: none;
}

.preloader-logo {
    width: 100px;
    animation: pulse 2s infinite;
}

/* Intro Futurista de Outro Mundo */
.futuristic-intro {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    perspective: 1000px;
}

.intro-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.2);
    z-index: 1;
}

#intro-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.intro-content {
    z-index: 3;
    max-width: 80%;
    transform-style: preserve-3d;
}

.holographic-logo {
    position: relative;
    animation: hologram-pulse 3s infinite alternate ease-in-out;
}

.holographic-logo img {
    width: 200px;
    filter: drop-shadow(var(--neon-glow));
    opacity: 0.9;
    transform: rotateY(10deg);
}

.intro-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
    margin: 20px 0;
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    clip: rect(0, 900px, 0, 0);
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00ff;
    animation: glitch-anim 8s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00ffff;
    animation: glitch-anim 7s infinite linear alternate-reverse;
}

.intro-subtitle {
    font-size: 1.2rem;
    margin: 20px 0 40px;
    color: var(--text-light);
    text-shadow: 0 0 10px var(--primary-color);
    max-width: 600px;
    animation: text-glow 2s infinite alternate;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.floating-item {
    position: absolute;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.7;
    animation: float 5s infinite ease-in-out;
    animation-delay: var(--delay);
    text-shadow: var(--neon-glow);
    transform: translate3d(var(--x), var(--y), 0);
}

/* Animações Adicionais */
@keyframes hologram-pulse {
    0% { opacity: 0.7; transform: scale(1) rotateY(0deg); filter: blur(1px); }
    100% { opacity: 1; transform: scale(1.05) rotateY(5deg); filter: blur(0); }
}

@keyframes glitch-anim {
    0% { clip: rect(42px, 9999px, 44px, 0); }
    5% { clip: rect(12px, 9999px, 59px, 0); }
    10% { clip: rect(48px, 9999px, 29px, 0); }
    15% { clip: rect(42px, 9999px, 73px, 0); }
    20% { clip: rect(63px, 9999px, 27px, 0); }
    25% { clip: rect(34px, 9999px, 55px, 0); }
    30% { clip: rect(86px, 9999px, 73px, 0); }
    35% { clip: rect(20px, 9999px, 88px, 0); }
    40% { clip: rect(14px, 9999px, 92px, 0); }
    45% { clip: rect(81px, 9999px, 91px, 0); }
    50% { clip: rect(87px, 9999px, 68px, 0); }
    55% { clip: rect(28px, 9999px, 93px, 0); }
    60% { clip: rect(45px, 9999px, 52px, 0); }
    65% { clip: rect(59px, 9999px, 70px, 0); }
    70% { clip: rect(41px, 9999px, 62px, 0); }
    75% { clip: rect(38px, 9999px, 69px, 0); }
    80% { clip: rect(7px, 9999px, 79px, 0); }
    85% { clip: rect(83px, 9999px, 72px, 0); }
    90% { clip: rect(34px, 9999px, 39px, 0); }
    95% { clip: rect(1px, 9999px, 88px, 0); }
    100% { clip: rect(97px, 9999px, 48px, 0); }
}

@keyframes text-glow {
    0% { text-shadow: 0 0 5px var(--primary-color); }
    100% { text-shadow: 0 0 20px var(--primary-color); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 5px var(--primary-color); }
    100% { box-shadow: var(--neon-glow); }
}

@keyframes float {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50% { transform: translate3d(20px, -30px, 50px) rotate(10deg); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
    margin-left: 15px;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s, text-shadow 0.3s;
}

.navbar ul li a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    background: var(--primary-color);
    transform-origin: 0 0;
    transform: scaleX(0);
    z-index: 1001;
}

/* Hero */
#hero {
    position: relative;
    height: 90vh;
    background: linear-gradient(135deg, var(--background), #1A1A1A);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 90%;
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin: 15px 0 30px 0;
}

.btn-agendar {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.btn-agendar:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.1);
}

/* Sobre */
#sobre {
    padding: 60px 15px;
    background: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 8px var(--primary-color);
}

.sobre-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sobre-content img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.sobre-content p {
    font-size: 1rem;
    color: var(--text-dark);
    max-width: 600px;
    text-align: center;
}

.diferenciais {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.diferencial {
    text-align: center;
    max-width: 150px;
    padding: 15px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 10px;
    transition: all 0.3s;
}

.diferencial:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

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

.diferencial h3 {
    font-size: 1rem;
    color: var(--text-light);
}

/* Galeria */
#galeria {
    padding: 60px 15px;
    background: linear-gradient(135deg, var(--background), #1A1A1A);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.filter-btn {
    background: rgba(34, 197, 94, 0.2);
    color: var(--text-light);
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    position: relative;
    z-index: 10;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    color: var(--background);
    box-shadow: 0 0 10px var(--primary-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.portfolio-item.large {
    grid-row: span 2;
    grid-column: span 2;
}

.portfolio-item.medium {
    grid-row: span 2;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
    transition: opacity 0.3s ease-in-out;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(34, 197, 94, 0.5);
    color: var(--text-light);
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--primary-color);
}

.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
}

.close-lightbox:hover { color: var(--primary-color); }

/* Serviços */
#servicos {
    padding: 60px 15px;
    background: var(--background);
    text-align: center;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

.servico-card {
    background: rgba(34, 197, 94, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(34, 197, 94, 0.3);
    max-width: 300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.servico-card:hover {
    transform: translateY(-10px) rotateX(10deg) rotateY(10deg);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5), 0 0 15px rgba(34, 197, 94, 0.3) inset;
}

.servico-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.servico-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.servico-card p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.servico-card select {
    width: 100%;
    padding: 8px;
    background: #1A1A1A;
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    appearance: auto;
}

.servico-card .servico-btn {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: var(--text-light);
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: auto;
    position: relative;
    z-index: 10;
}

.servico-card .servico-btn:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.1);
}

/* FAQ */
#faq {
    padding: 60px 15px;
    background: var(--background);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

details {
    margin-bottom: var(--spacing-md);
    background: rgba(34, 197, 94, 0.1);
    padding: var(--spacing-sm);
    border-radius: 10px;
}

summary {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #D3D3D3;
    cursor: pointer;
    padding: var(--spacing-sm);
}

details p {
    color: var(--text-dark);
    padding: 0 var(--spacing-sm) var(--spacing-md);
}

/* Contato */
#contato {
    padding: 60px 15px;
    background: var(--background);
}

#contactForm {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
}

#contactForm input, #contactForm select {
    padding: 8px;
    background: #1A1A1A;
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: box-shadow 0.3s;
    appearance: auto;
    width: 100%;
    box-sizing: border-box;
}

#contactForm input::placeholder, #contactForm select option {
    color: var(--text-light);
    opacity: 1;
}

#contactForm input:-ms-input-placeholder, #contactForm select option {
    color: var(--text-light);
}

#contactForm input::-ms-input-placeholder, #contactForm select option {
    color: var(--text-light);
}

#contactForm select option:disabled {
    color: #FF4444;
    background: #2A2A2A;
}

#contactForm input:hover, #contactForm select:hover {
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.3);
}

#contactForm button {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: var(--text-light);
    padding: 10px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    z-index: 10;
}

#contactForm button:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.05);
}

.map {
    margin-top: 30px;
    max-width: 100%;
}

/* Footer */
footer {
    background: var(--background);
    padding: 30px 15px;
    text-align: center;
    border-top: 1px solid rgba(34, 197, 94, 0.3);
}

footer p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    font-size: 0.9rem;
}

footer .social a {
    color: var(--primary-color);
    margin: 0 10px;
    font-size: 1.5rem;
    transition: all 0.3s;
}

footer .social a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 1000;
    display: block;
}

.whatsapp-btn a {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
    transition: all 0.3s;
    text-decoration: none;
    border: none;
    outline: none;
    z-index: 10;
}

.whatsapp-btn a:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 10px;
        left: 10px;
    }
    .whatsapp-btn a {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn {
        bottom: 5px;
        left: 5px;
    }
    .whatsapp-btn a {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}

/* Back to Top Button */
#back-to-top {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 1000;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
    transition: all 0.3s;
    cursor: pointer;
    z-index: 10;
}

#back-to-top:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    #back-to-top {
        bottom: 10px;
        right: 10px;
    }
    #back-to-top {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    #back-to-top {
        bottom: 5px;
        right: 5px;
    }
    #back-to-top {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: rgba(34, 197, 94, 0.1);
    padding: 15px;
    border-radius: 10px;
    max-width: 400px;
    border: 1px solid var(--primary-color);
    text-align: center;
}

.modal-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.modal-content input, .modal-content select {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    background: #1A1A1A;
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: box-shadow 0.3s;
    appearance: auto;
}

.modal-content input::placeholder, .modal-content select option {
    color: var(--text-light);
    opacity: 1;
}

.modal-content input:-ms-input-placeholder, .modal-content select option {
    color: var(--text-light);
}

.modal-content input::-ms-input-placeholder, .modal-content select option {
    color: var(--text-light);
}

.modal-content select option:disabled {
    color: #FF4444;
    background: #2A2A2A;
}

.modal-content input:hover, .modal-content select:hover {
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.3);
}

.modal-content button {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: var(--text-light);
    padding: 10px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    z-index: 10;
}

.modal-content button:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.05);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
}

.close-modal:hover { color: var(--primary-color); }

/* Notification */
.custom-notification {
    display: none;
    position: fixed;
    top: 15px;
    right: 15px;
    background: rgba(34, 197, 94, 0.8);
    color: var(--text-light);
    padding: 15px 25px;
    border-radius: 10px;
    z-index: 1002;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
    max-width: 350px;
    text-align: center;
}

.custom-notification p {
    margin: 0;
    font-size: 0.9rem;
}

.close-notification {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-light);
}

.close-notification:hover { color: var(--secondary-color); }

/* Barbeiros */
#barbeiros {
    padding: 60px 15px;
    background: linear-gradient(135deg, var(--background), #1A1A1A);
    text-align: center;
}

.barbeiros-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

.barbeiro-video {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.barbeiro-video video {
    width: 100%;
    height: auto;
    display: block;
}

.barbeiro-video h3 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 15px;
    border-radius: 20px;
}

/* Avaliações */
#avaliacoes {
    padding: 60px 15px;
    background: var(--background);
    text-align: center;
}

.average-rating {
    margin-bottom: 30px;
}

.average-rating .stars {
    font-size: 2rem;
    color: #FFD700;
    text-shadow: 0 0 5px #FFD700;
}

.average-rating p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 10px;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.avaliacao-card {
    flex: 0 0 calc(33.33% - 20px);
    min-width: calc(33.33% - 20px);
    background: rgba(34, 197, 94, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    transition: all 0.3s;
    margin: 0 10px;
    box-shadow: var(--neon-glow);
}

.avaliacao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--primary-color);
}

.rating {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #FFD700;
}

.avaliacao-card p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-style: italic;
}

.avaliacao-card cite {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--primary-color);
    display: block;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-dark);
    margin-top: 5px;
    display: block;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(34, 197, 94, 0.5);
    color: var(--text-light);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 50%;
    z-index: 10;
}

.carousel-prev:hover, .carousel-next:hover {
    background: var(--primary-color);
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

/* Dicas de Estilo */
#dicas-estilo {
    padding: 60px 15px;
    background: var(--background);
    text-align: center;
}

.dicas-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

/* Promoções */
#promocoes {
    padding: 60px 15px;
    background: linear-gradient(135deg, var(--background), #1A1A1A);
    text-align: center;
}

.promocoes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

.promocao-card {
    background: rgba(34, 197, 94, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    transition: transform 0.3s;
}

.promocao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

.promocao-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.promocao-card p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.countdown {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes glitch {
    0%, 100% { transform: translate(0, 0); }
    10%, 20% { transform: translate(-2px, 2px); }
    30%, 40% { transform: translate(2px, -2px); }
}

.section-transition {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
    pointer-events: auto;
}

.section-transition.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container { padding: 0 10px; }
    .hero-content h1 { font-size: 2.5rem; }
    .servicos-grid, .barbeiros-container, .dicas-container, .promocoes-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .intro-title { font-size: 2.5rem; }
    .intro-subtitle { font-size: 1rem; }
    .avaliacao-card {
        flex: 0 0 calc(50% - 20px);
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .navbar .logo {
        order: 1;
    }
    .menu-toggle {
        display: block;
        order: 2;
        margin-right: 15px;
    }
    .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        padding: 10px 0;
        position: absolute;
        top: 60px;
        left: 0;
    }
    .navbar ul.active { display: flex; }
    .navbar ul li {
        margin: 10px 0;
        text-align: center;
        width: 100%;
    }
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    .btn-agendar { font-size: 0.9rem; padding: 10px 20px; }
    .intro-title { font-size: 2rem; }
    .intro-subtitle { font-size: 1rem; }
    h2 { font-size: 1.8rem; }
    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 150px;
    }
    .portfolio-item.large, .portfolio-item.medium {
        grid-row: span 1;
        grid-column: span 1;
    }
    .servicos-grid { grid-template-columns: 1fr; }
    .servico-card { max-width: 90%; }
    .barbeiros-container { grid-template-columns: 1fr; }
    .barbeiro-video video { height: 200px; }
    .dicas-container { grid-template-columns: 1fr; }
    .promocoes-container { grid-template-columns: 1fr; }
    #contactForm, .modal-content {
        max-width: 90%;
    }
    .whatsapp-btn a, #back-to-top {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    .avaliacao-card {
        flex: 0 0 calc(100% - 20px);
        min-width: calc(100% - 20px);
    }
    .average-rating .stars { font-size: 1.5rem; }
    .average-rating p { font-size: 1rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.5rem; }
    .hero-content p { font-size: 0.9rem; }
    .intro-title { font-size: 1.5rem; }
    .intro-subtitle { font-size: 0.9rem; }
    h2 { font-size: 1.5rem; }
    .servico-card h3 { font-size: 1.2rem; }
    .servico-card p { font-size: 0.8rem; }
    .servico-card select, .servico-card .servico-btn { font-size: 0.8rem; }
    #contactForm input, #contactForm select, #contactForm button { font-size: 0.8rem; }
    .modal-content { padding: 15px; }
    .map iframe { height: 200px; }
    .whatsapp-btn a, #back-to-top {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}

@media (min-width: 769px) {
    .servicos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .servico-card {
        min-height: 400px;
    }
}

.dynamic-btn {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
    transition: all 0.3s;
    cursor: pointer;
}

.dynamic-btn:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.1);
}

select option {
    color: var(--text-light);
    background: #1A1A1A;
}