/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #ff6b6b;
    --accent-color: #ffd93d;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --transition: all 0.3s ease;
    
    /* Gradientes para layout único */
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

/* ====================================================================
   GOOGLE CALENDAR APPOINTMENT SCHEDULING
   ==================================================================== */
.calendar-booking {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.booking-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.calendar-booking iframe {
    border-radius: 10px;
    overflow: hidden;
}

.form-alternative {
    background: rgba(255,255,255,0.9);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.schedule-content {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
}

.calendar-note {
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.form-alternative input[type="file"] {
    margin-top: 5px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
}

/* ====================================================================
   SEÇÃO DE CUIDADOS COM A TATTOO
   ==================================================================== */
.aftercare {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.aftercare-content {
    max-width: 1200px;
    margin: 0 auto;
}

.care-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.care-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: var(--transition);
}

.care-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.care-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.care-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.care-card ul {
    list-style: none;
    text-align: left;
    padding: 0;
}

.care-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.care-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.care-tips {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.care-tips h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: var(--transition);
}

.tip-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

.tip-item:hover i {
    color: white;
}

/* ====================================================================
   CAMPO DE UPLOAD DE ARQUIVO MELHORADO
   ==================================================================== */
.file-upload-wrapper {
    position: relative;
    margin-top: 0.5rem;
}

.file-input {
    display: none;
}

.file-upload-label {
    display: block;
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: #fafafa;
}

.file-upload-label:hover {
    border-color: var(--primary-color);
    background: rgba(52, 152, 219, 0.05);
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.file-upload-content i {
    font-size: 2rem;
    color: var(--primary-color);
}

.file-upload-text {
    font-weight: 600;
    color: var(--text-dark);
}

.file-upload-subtitle {
    font-size: 0.9rem;
    color: #666;
}

.file-preview {
    display: none;
    position: relative;
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.file-preview.active {
    display: block;
}

#previewImage {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.remove-file {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    font-size: 1rem;
    transition: var(--transition);
}

.remove-file:hover {
    background: #e74c3c;
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .care-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .care-card {
        padding: 1.5rem;
    }
}

/* ====================================================================
   TIPOGRAFIA PRINCIPAL
   ==================================================================== */
.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    line-height: 1.2;
}

/* ====================================================================
   ESTILOS DO LOGO E HEADER
   ==================================================================== */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 120px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    border-radius: 10px;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* ====================================================================
   AVISOS E ALERTAS DO AGENDAMENTO
   ==================================================================== */
.schedule-alerts {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.alert {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 14px;
    border-left: 4px solid;
    transition: var(--transition);
}

.alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.alert i {
    font-size: 20px;
    flex-shrink: 0;
}

.alert p {
    margin: 0;
    line-height: 1.4;
}

.alert-info {
    background: rgba(52, 152, 219, 0.1);
    border-left-color: #3498db;
    color: #2c3e50;
}

.alert-warning {
    background: rgba(241, 196, 15, 0.1);
    border-left-color: #f1c40f;
    color: #2c3e50;
}

.alert-success {
    background: rgba(46, 204, 113, 0.1);
    border-left-color: #2ecc71;
    color: #2c3e50;
}

.alert-calendar {
    background: rgba(155, 89, 182, 0.1);
    border-left-color: #9b59b6;
    color: #2c3e50;
}

/* Responsividade dos Alertas */
@media (max-width: 768px) {
    .logo {
        gap: 10px;
    }
    
    .logo-img {
        width: 80px;
        max-height: 35px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .schedule-alerts {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .alert {
        padding: 12px 15px;
        font-size: 13px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .alert i {
        font-size: 24px;
    }
    
    .alert p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .alert {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .alert i {
        font-size: 20px;
    }
    
    .alert p {
        font-size: 11px;
        line-height: 1.3;
    }
}

/* ====================================================================
   SEÇÃO SOBRE O ARTISTA
   ==================================================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    text-align: center;
}

.artist-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.artist-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .artist-photo {
        width: 250px;
        height: 250px;
        object-position: center 25%;
    }
    
    .about-text {
        font-size: 1rem;
    }
}

/* ====================================================================
   BOTÃO DE CALENDAR
   ==================================================================== */
.calendar-btn {
    margin-top: 15px;
    width: 100%;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    border: none;
    transition: var(--transition);
}

.calendar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.3);
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
}

.calendar-btn i {
    font-size: 16px;
}
#couponCode {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

#couponCode::placeholder {
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--text-light);
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

/* Navigation Mobile Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

/* Efeito X animado */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        left: -100%;
        top: 100%; /* Fica logo abaixo do header */
        flex-direction: column;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        width: 100%;
        text-align: center;
        transition: 0.5s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        z-index: 1000; /* Garante que fique acima de outros elementos */
        max-height: 80vh; /* Limita altura para não cortar */
        overflow-y: auto; /* Permite scroll se necessário */
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 8px 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        padding: 0 20px; /* Espaçamento nas laterais */
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    
    .nav-menu .nav-link {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        padding: 12px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
        display: inline-block;
        text-transform: uppercase;
        letter-spacing: 1px;
        width: 100%; /* Garante que ocupe toda largura disponível */
        box-sizing: border-box;
    }
    
    .nav-menu .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(142, 68, 173, 0.3), transparent);
        transition: left 0.5s ease;
        border-radius: 8px;
    }
    
    .nav-menu .nav-link:hover::before {
        left: 100%;
    }
    
    .nav-menu .nav-link:hover {
        color: #8e44ad;
        transform: translateX(5px);
        text-shadow: 0 0 10px rgba(142, 68, 173, 0.5);
    }
    
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001; /* Garante que fique acima do menu */
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    opacity: 0.9;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

@keyframes titleGlow {
    0% { text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
    100% { text-shadow: 2px 2px 20px rgba(255,107,107,0.5); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255,107,107,0.3);
}

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

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
    letter-spacing: 1px;
    line-height: 1.3;
}

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

/* About Section */
.about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--text-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stat h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-dark);
    font-weight: 600;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition);
}

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

/* Portfolio Section */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .filter-buttons {
        gap: 0.3rem;
    }
    
    .filter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .filter-buttons {
        gap: 0.2rem;
    }
    
    .filter-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

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

@media (max-width: 768px) {
    .portfolio-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .portfolio-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
    background: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
    object-position: center;
}

@media (max-width: 768px) {
    .portfolio-item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .portfolio-item img {
        height: 150px;
    }
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--text-light);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

/* Schedule Section */
.schedule {
    background: var(--bg-light);
}

.schedule-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.calendar-container {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-nav {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.calendar-nav:hover {
    background: var(--secondary-color);
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 1rem;
}

.calendar-days-header div {
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.calendar-day:hover {
    background: var(--bg-light);
    transform: scale(1.05);
}

.calendar-day.selected {
    background: var(--secondary-color);
    color: var(--text-light);
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.disabled:hover {
    background: transparent;
    transform: none;
}

.schedule-form {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.schedule-form h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255,107,107,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Aviso de Pagamento */
.payment-alert {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #f39c12;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.2);
    animation: slideInUp 0.5s ease;
}

.alert-icon {
    background: #f39c12;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.alert-content h4 {
    color: #e67e22;
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 700;
}

.alert-content p {
    margin: 5px 0;
    color: #7f6000;
    font-size: 14px;
    line-height: 1.5;
}

.alert-content strong {
    color: #d35400;
    font-weight: 700;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 10px;
    animation: zoomIn 0.3s ease-out;
    object-fit: contain;
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--text-light);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

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

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
    border: none;
    padding: 20px;
    cursor: pointer;
    font-size: 24px;
    transition: var(--transition);
    border-radius: 5px;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(255,255,255,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
        height: auto;
        min-height: 60px;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
    }
    
    .logo {
        flex: 1;
        text-align: center;
    }
    
    .logo h1 {
        font-size: 1.6rem;
        text-align: center;
        margin: 0;
        line-height: 1.1;
        white-space: nowrap;
    }
    
    .navbar {
        flex-direction: row;
        padding: 0;
        position: static;
        width: 100%;
        align-items: center;
    }
    
    .hamburger {
        position: static;
        display: flex;
        margin-left: auto;
    }
    
    .hero-title {
        font-size: 3rem;
        font-family: 'Cinzel', serif;
        letter-spacing: 1px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content,
    .schedule-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .portfolio-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .portfolio-filters {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        text-align: center;
    }
    
    .filter-btn {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .section-title {
        font-size: 2rem;
        font-family: 'Cinzel', serif;
        letter-spacing: 0.5px;
        line-height: 1.4;
    }
    
    .modal-prev,
    .modal-next {
        padding: 15px;
        font-size: 18px;
    }
    
    .modal-content {
        max-width: 95vw;
        max-height: 85vh;
    }
}

@media (max-width: 768px) {
    .portfolio {
        padding: 40px 0;
    }
    
    .filter-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .filter-btn {
        font-size: 12px;
        padding: 8px 12px;
        min-height: auto;
    }
    
    .portfolio-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .portfolio-item {
        height: 120px; /* Mais baixo para mobile */
        border-radius: 8px;
    }
    
    .portfolio-item img {
        height: 120px;
        object-fit: cover;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .portfolio-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .portfolio-item {
        height: 100px; /* Ainda menor para telas pequenas */
    }
    
    .portfolio-item img {
        height: 100px;
    }
    
    .filter-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .filter-btn {
        font-size: 11px;
        padding: 6px 10px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--text-light);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    background: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
