/* Local Font Face Declarations - Poppins & Playfair Display */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('assets/fonts/poppins/poppins-v23-latin-300.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/poppins/poppins-v23-latin-regular.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('assets/fonts/poppins/poppins-v23-latin-500.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('assets/fonts/poppins/poppins-v23-latin-600.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('assets/fonts/poppins/poppins-v23-latin-700.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/playfair/playfair-display-v39-latin-regular.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 500;
    src: url('assets/fonts/playfair/playfair-display-v39-latin-500.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 600;
    src: url('assets/fonts/playfair/playfair-display-v39-latin-600.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    src: url('assets/fonts/playfair/playfair-display-v39-latin-700.woff2') format('woff2');
    font-display: swap;
}

/* Font Awesome */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('assets/fontawesome/webfonts/fa-solid-900.woff2') format('woff2'),
         url('assets/fontawesome/webfonts/fa-solid-900.ttf') format('truetype');
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fontawesome/webfonts/fa-regular-400.woff2') format('woff2'),
         url('assets/fontawesome/webfonts/fa-regular-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fontawesome/webfonts/fa-brands-400.woff2') format('woff2'),
         url('assets/fontawesome/webfonts/fa-brands-400.ttf') format('truetype');
}

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

:root {
    --primary-color: #BBAF9D;
    --secondary-color: #66574D;
    --accent-color: #EAE9E6;
    --dark-color: #000000;
    --light-color: #EAE9E6;
    --text-color: #333;
    --text-light: #666;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.12);
    --border-radius: 15px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Performance Variables */
    --animation-duration: 300ms;
    --animation-timing: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--light-color);
}

section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.container {
    max-width: min(1200px, 100% - 40px);
    margin: 0 auto;
    width: 100%;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    text-align: center;
    color: white;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.nav-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    width: 40px;
    height: 40px;
    position: relative;
}

.bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary-color);
    position: absolute;
    left: 8px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.bar:nth-child(1) { top: 12px; }
.bar:nth-child(2) { top: 19px; }
.bar:nth-child(3) { top: 26px; }

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: var(--light-color);
        padding: 5rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1000;
    }

    .nav-menu[aria-hidden="false"],
    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
        text-align: left;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }

    .nav-link:hover,
    .nav-link[aria-current="page"] {
        background-color: rgba(187, 175, 157, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    body.nav-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        max-width: 100%;
        padding-top: 4rem;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0.5rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 500;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./imagens/hero.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 6;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    max-width: 45%;
    color: var(--light-color);
    position: relative;
    z-index: 6;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease forwards;
}

.hero-title .line:nth-child(2) {
    animation-delay: 0.3s;
}

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

.hero-subtitle {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    font-weight: 300;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-description {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    z-index: 6;
    transform: translateZ(0);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

/* Removido: regra que forçava imagem diferente no mobile */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--light-color);
    border-radius: 50%;
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--light-color);
    border-bottom: 2px solid var(--light-color);
    transform: translate(-50%, -50%) rotate(45deg);
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

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

/* About Section */
.about {
    position: relative;
    padding: 40px 0;
    background-color: var(--light-color);
    margin-top: -100px; /* Corrige o gap */
    z-index: 1;
    transform: translateZ(0);
    -webkit-transform-style: preserve-3d;
    backface-visibility: hidden;
}

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

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.about-image:hover .about-image-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    transform: scale(1.1);
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 30px;
}

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

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.stat-item h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: white;
}

.music-player {
    background: var(--gradient);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 80px;
    color: white;
    box-shadow: var(--shadow-hover);
}

.player-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.album-cover {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.track-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.track-info p {
    opacity: 0.8;
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.control-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.play-btn {
    width: 60px;
    height: 60px;
    background: white;
    color: var(--primary-color);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: white;
    width: 35%;
    border-radius: 3px;
}

.time-info {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.music-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.music-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.card-image:hover .card-overlay {
    opacity: 1;
}

.card-image:hover img {
    transform: scale(1.1);
}

.play-card-btn {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.play-card-btn:hover {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
}

.card-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.card-content p {
    color: var(--text-light);
}

.streaming-platforms {
    text-align: center;
}

.streaming-platforms h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--dark-color);
}

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

.platform-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
}

.platform-link:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.platform-link i {
    font-size: 1.5rem;
}

/* Services Section - Consolidado */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.service-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.service-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.feature {
    background: var(--light-color);
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.social-media-section {
    text-align: center;
    background: var(--light-color);
    padding: 60px 40px;
    border-radius: var(--border-radius);
}

.social-media-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.social-media-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.social-platforms {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-platform {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: white;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.social-platform:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.social-platform i {
    font-size: 1.5rem;
}

/* Videos Section */
.videos {
    padding: 120px 0;
    background: var(--light-color);
}

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

.video-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.video-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.video-thumbnail:hover .video-overlay {
    opacity: 1;
}

.video-thumbnail:hover img {
    transform: scale(1.1);
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 2rem;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
}

.video-content {
    padding: 25px;
}

.video-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.video-content p {
    color: var(--text-light);
    font-weight: 500;
}

.gallery-photos {
    text-align: center;
    padding: 20px 0;
}

.gallery-photos h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
    padding: 0 15px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.photo-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

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

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

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

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

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

.photo-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark-color);
}

.photo-btn:hover {
    background: white;
    transform: scale(1.1);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

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

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

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

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

.gallery-item.hidden {
    display: none;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

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

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

.gallery-btn {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

/* Testimonials Card Delicado */
.testimonial-card {
    background: var(--light-color);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    margin-top: auto;
    text-align: center;
}

.testimonial-author h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.stars i {
    color: #ffd700;
    font-size: 1.1rem;
}

.shows-list {
    max-width: 800px;
    margin: 0 auto;
}

.show-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    transition: var(--transition);
}

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

.show-date {
    text-align: center;
    padding: 20px;
    background: var(--gradient);
    color: white;
    border-radius: var(--border-radius);
    min-width: 80px;
}

.show-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.show-date .month {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.show-info {
    flex: 1;
}

.show-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

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

.show-info i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--light-color);
}

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

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

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

.form-group label {
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 0.9rem;
    color: var(--primary-color);
    background: white;
    padding: 0 5px;
    transition: var(--transition);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label,
.form-group select:focus + label,
.form-group select:valid + label {
    top: -10px;
    left: 15px;
    font-size: 0.9rem;
    color: var(--primary-color);
    background: white;
    padding: 0 5px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 120px;
    margin-bottom: 30px;
}

.footer-logo p {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: left;
    font-weight: 500;
    max-width: 400px;
    margin: 0;
    line-height: 1.5;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

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

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-logo {
        text-align: center;
    }

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

    .footer-logo p {
        text-align: center;
        margin: 0 auto;
        font-size: 1rem;
    }

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

    .footer-section h4 {
        margin-bottom: 15px;
    }

    .footer-section a {
        margin-bottom: 8px;
    }

    .footer-section a:hover {
        padding-left: 0;
        color: var(--accent-color);
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-logo img {
        height: 80px;
    }

    .footer-logo p {
        font-size: 0.95rem;
        padding: 0 20px;
    }
}

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

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--border-radius);
}

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

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: transparent;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Proporção 16:9 */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
    }

    .close-modal {
        top: -50px;
        right: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        padding: 0 30px;
        margin-top: 30px;
    }

    .hero-text {
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        padding: 20px;
    }

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

    .nav-link {
        font-size: 1.2rem;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    }

    .nav-menu.active .nav-link {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active .nav-list li:nth-child(1) .nav-link { transition-delay: 0.1s; }
    .nav-menu.active .nav-list li:nth-child(2) .nav-link { transition-delay: 0.2s; }
    .nav-menu.active .nav-list li:nth-child(3) .nav-link { transition-delay: 0.3s; }
    .nav-menu.active .nav-list li:nth-child(4) .nav-link { transition-delay: 0.4s; }
    .nav-menu.active .nav-list li:nth-child(5) .nav-link { transition-delay: 0.5s; }
    .nav-menu.active .nav-list li:nth-child(6) .nav-link { transition-delay: 0.6s; }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

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

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    body.nav-open {
        overflow: hidden;
    }

    /* Outros estilos responsivos */
    .hero-title {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .music-grid {
        grid-template-columns: 1fr;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .show-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-filter {
        justify-content: center;
    }
    
    .filter-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    /* Estilos responsivos para seções de cantora de casamento */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-card {
        min-width: 300px;
    }
    
    .social-platforms {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .social-platform {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .social-media-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 0 15px;
    }

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

    .btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 24px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .music-player {
        padding: 25px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    /* Additional mobile optimization for wedding singer sections */
    .service-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .photos-grid {
        grid-template-columns: 1fr;
    }
    
    .social-platforms {
        gap: 15px;
    }
    
    .social-platform {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .video-thumbnail {
        height: 200px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        padding-left: 15px;
    }
    
    .quote-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
} 

.whatsapp-float {
    position: fixed;
    right: 90px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.scroll-to-top {
    background: var(--gradient) !important;
}

/* Tooltip for whatsapp */
.whatsapp-float::after {
    content: "WhatsApp";
    position: absolute;
    right: 110%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover::after {
    opacity: 1;
} 

.testimonial-row {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

/* Ajustar cartão para largura automática dentro do slide */
.swiper-slide .testimonial-card {
    height: 100%;
}

/* Slider container tweaks */
.testimonials-slider {
    position: relative;
    padding-bottom: 60px; /* espaço para bullets */
}

/* Arrows */
.testimonials-slider .swiper-button-next,
.testimonials-slider .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    color: var(--secondary-color);
    box-shadow: var(--shadow);
}

.testimonials-slider .swiper-button-prev {
    left: -25px;
}
.testimonials-slider .swiper-button-next {
    right: -25px;
}

.testimonials-slider .swiper-button-prev::after {
    content: "\f104"; /* FontAwesome left chevron */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.testimonials-slider .swiper-button-next::after {
    content: "\f105"; /* right chevron */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Bullets */
.testimonials-slider .swiper-pagination {
    bottom: 15px !important;
}

.testimonials-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    opacity: 0.3;
}

.testimonials-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Ajuste slide */
.testimonials-slider .swiper-slide {
    height: auto;
    display: flex;
}

/* Swiper nav colors */
.testimonials-slider .swiper-button-next,
.testimonials-slider .swiper-button-prev {
    color: var(--secondary-color);
}

.testimonials-slider .swiper-pagination-bullet {
    background: var(--secondary-color);
    opacity: 0.4;
}

.testimonials-slider .swiper-pagination-bullet-active {
    opacity: 1;
} 

.quote-icon {
    width: 34px;
    height: 34px;
    background: var(--accent-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    flex-shrink: 0;
} 

/* Botão do Canal do YouTube */
.channel-link {
    text-align: center;
    margin: 40px 0;
}

.youtube-channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FF0000;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

.youtube-channel-btn i {
    font-size: 24px;
}

.youtube-channel-btn:hover {
    background-color: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .youtube-channel-btn {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    
    .youtube-channel-btn i {
        font-size: 20px;
    }
} 

/* Ajustes do Slider de Depoimentos */
.testimonials .swiper {
    padding: 0 50px; /* Espaço para os botões nas laterais */
    position: relative;
    overflow: visible; /* Permite que os botões fiquem visíveis fora do container */
}

.testimonials .swiper-button-next,
.testimonials .swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.testimonials .swiper-button-next:after,
.testimonials .swiper-button-prev:after {
    font-size: 20px;
}

.testimonials .swiper-button-next:hover,
.testimonials .swiper-button-prev:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.testimonials .swiper-button-next {
    right: 0;
}

.testimonials .swiper-button-prev {
    left: 0;
}

@media (max-width: 768px) {
    .testimonials .swiper {
        padding: 0 40px;
    }
    
    .testimonials .swiper-button-next,
    .testimonials .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .testimonials .swiper-button-next:after,
    .testimonials .swiper-button-prev:after {
        font-size: 16px;
    }
} 

/* Ajustes dos Cards de Depoimentos */
.testimonials .swiper-slide {
    height: auto;
    display: flex;
    padding-bottom: 40px; /* Espaço para os marcadores */
}

.testimonial-card {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 20px; /* Espaço adicional na parte inferior */
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px; /* Espaço antes do footer */
}

.testimonial-footer {
    width: 100%;
    text-align: center;
    padding-top: 20px;
}

.testimonial-author {
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.2em;
}

/* Ajuste do container do Swiper */
.testimonials .swiper {
    padding: 0 50px 40px; /* Adicionado padding bottom para os marcadores */
    overflow: visible; /* Permite que os marcadores fiquem visíveis */
    max-width: var(--container-width, 1200px);
    margin: 0 auto;
    width: 100%;
    position: relative; /* Garante que os elementos de navegação fiquem contidos */
}

.testimonials .swiper-wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
}

/* Ajuste da posição dos marcadores */
.testimonials .swiper-pagination {
    bottom: 0 !important;
    position: absolute;
}

/* Ajuste do espaçamento em telas menores */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 20px;
        min-height: 250px;
    }
    
    .testimonial-footer {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .testimonials .swiper {
        padding: 0 30px;
    }
} 

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.will-change-transform {
    will-change: transform;
}

.hardware-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
} 

@media (max-width: 1024px) {
    .photos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .photos-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
        padding: 0 15px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .photo-btn {
        width: 40px;
        height: 40px;
    }
} 

/* Ajuste do espaçamento vertical entre seções */
.videos {
    padding: 60px 0 30px;
}

.gallery-photos {
    padding: 30px 0 60px;
}

@media (max-width: 768px) {
    .gallery-photos h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .videos {
        padding: 40px 0 20px;
    }
    
    .gallery-photos {
        padding: 20px 0 40px;
    }
} 

@media (max-width: 768px) {
    .hero-background {
        background-image: var(--gradient) !important;
        opacity: 1;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-text {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .stat-item {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-image {
        max-width: 100%;
    }

    .stat-item {
        max-width: 100%;
        padding: 1.5rem;
    }
} 

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 60px;
        gap: 40px;
        width: 100%;
    }

    .hero-text {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        order: 1; /* Texto segundo */
    }

    .hero-image {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        order: 2; /* Imagem primeiro */
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
        order: 3; /* Botões por último */
    }

    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.5rem;
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-subtitle {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-description {
        max-width: 100%;
        margin: 0 auto 30px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 100px 10px 40px;
        width: 100%;
    }

    .hero-text {
        width: 100%;
        max-width: 100%;
    }

    .hero-image {
        max-width: 280px;
    }

    .hero-description,
    .hero-subtitle,
    .hero-title {
        width: 100%;
        max-width: 100%;
        padding: 0 5px;
    }

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

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
} 

.hero-image img,
.about-image img,
.gallery-item img,
.photo-item img,
.video-thumbnail img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

.photos-grid,
.gallery-grid,
.services-grid,
.videos-grid,
.testimonials-grid {
    width: 100%;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
} 

/* Classes de visibilidade responsiva */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}

/* Media Queries para a seção de contato */
@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

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

    .contact-info h3 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .contact-info p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .contact-item {
        gap: 15px;
        margin-bottom: 20px;
    }

    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

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

    .contact-form {
        padding: 30px 20px;
    }

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

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 40px 0;
    }

    .contact-content {
        gap: 30px;
    }

    .contact-info h3 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 20px 15px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
    }
} 

/* Gallery Slider Styles */
.gallery-slider {
    width: 100%;
    padding: 20px 0 50px;
    position: relative;
}

.gallery-slider .swiper-pagination {
    bottom: -30px !important;
}

.gallery-slider .swiper-slide {
    width: 300px;
    height: 400px;
    margin: 0 15px;
    transition: transform 0.3s ease;
}

.gallery-slider .gallery-item {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.gallery-slider .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.gallery-slider .gallery-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-slider .gallery-btn:hover {
    transform: scale(1.1);
}

.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.gallery-slider .swiper-button-next:after,
.gallery-slider .swiper-button-prev:after {
    font-size: 20px;
}

.gallery-slider .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
}

.gallery-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-slider .swiper-slide {
        width: 250px;
        height: 350px;
    }
}

@media (max-width: 480px) {
    .gallery-slider .swiper-slide {
        width: 200px;
        height: 300px;
    }
    
    .gallery-slider .swiper-button-next,
    .gallery-slider .swiper-button-prev {
        display: none;
    }
} 