/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --secondary-color: #8b7355;
    --accent-color: #f4d03f;
    --gold-light: #f7e98e;
    --gold-dark: #b8941f;
    --text-dark: #1a1a1a;
    --text-light: #6b6b6b;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --bg-dark: #1a1a1a;
    --gradient-1: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    --gradient-2: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --gradient-luxury: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 45, 45, 0.95) 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.3);
    --shadow-luxury: 0 20px 60px rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-luxury);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* Overlay para menu mobile */
.mobile-menu-overlay {
    display: none;
}

@media (max-width: 968px) {
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
        z-index: 999;
        pointer-events: none;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav a:hover {
    opacity: 0.8;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

.nav a:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s;
    border: none;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--bg-white);
    border-radius: 3px;
    transition: all 0.3s;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Gallery Section */
.gallery {
    background: var(--bg-white);
    padding: 0;
    margin-top: 70px;
}

/* Video Section */
.video-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

.video-section > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    text-align: center;
}

.video-section .section-header {
    margin-bottom: 50px;
    text-align: center;
    width: 100%;
}

.video-section .section-header .section-title {
    margin: 0 auto 20px;
}

.video-section .section-header .section-subtitle {
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 240px;
    height: 426px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: #000;
    display: inline-block;
}

.video-player {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border: 0;
    margin: 0;
    padding: 0;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    position: relative;
    background: var(--gradient-1);
    padding-top: 40px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--bg-white);
    padding: 0 0 60px;
    margin-top: 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 40px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: -1px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.hero-dates {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 30px auto 40px;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.date-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 25px;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s;
}

.date-item:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.date-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.date-location {
    font-size: 0.95rem;
    color: var(--bg-white);
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.35rem;
    max-width: 750px;
    margin: 0 auto 50px;
    opacity: 0.9;
    line-height: 1.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
    font-weight: 600;
    letter-spacing: 1px;
    padding: 18px 45px;
    font-size: 1.05rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid rgba(212, 175, 55, 0.6);
    backdrop-filter: blur(10px);
    letter-spacing: 1px;
    padding: 18px 45px;
    font-size: 1.05rem;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

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

/* Diferenciais Section */
.diferenciais {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
}

/* Inspiration Section */
.inspiration-section {
    background: #000000 !important;
    color: var(--bg-white) !important;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.inspiration-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 50% 20%, rgba(244, 208, 63, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.08)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

.inspiration-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.inspiration-title {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    margin-bottom: 50px;
    line-height: 1.2;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
    text-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.inspiration-text {
    font-size: 1.35rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 35px;
    font-weight: 300;
    letter-spacing: 0.3px;
    padding: 0 20px;
}

.inspiration-highlight {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f4d03f !important;
    margin-top: 50px;
    line-height: 1.9;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    padding: 40px;
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    position: relative;
}

.inspiration-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 20px 20px 0 0;
}

/* About Section */
.about {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
    opacity: 0.3;
}

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

.about-image {
    position: relative;
    margin-top: 40px;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-luxury);
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.dani-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 20px;
    display: block;
}

.placeholder-content {
    text-align: center;
    color: var(--bg-white);
}

.placeholder-content svg {
    margin-bottom: 20px;
}

.placeholder-content p {
    font-size: 1.25rem;
    font-weight: 600;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-gold);
}

.feature-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Program Section */
.program {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
}

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

.program-card {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
    border-color: rgba(212, 175, 55, 0.3);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.program-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
    color: var(--primary-color);
}

.carousel-btn:hover {
    background: var(--bg-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--bg-white);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.testimonials-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.testimonials-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonials-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.testimonials-carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
}

.testimonials-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.testimonials-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
    box-shadow: var(--shadow-gold);
    color: var(--accent-color);
    pointer-events: auto;
}

.testimonials-carousel-btn:hover {
    background: rgba(26, 26, 26, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    border-color: var(--accent-color);
}

.testimonials-carousel-btn-prev {
    left: 20px;
}

.testimonials-carousel-btn-next {
    right: 20px;
}

.testimonials-carousel-btn svg {
    width: 24px;
    height: 24px;
}


.testimonials-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 25px 20px;
    position: relative;
    z-index: 10;
    background: transparent;
}

.testimonials-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.6);
    cursor: pointer;
    transition: all 0.3s;
}

.testimonials-carousel-dot.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.testimonials-carousel-dot:hover {
    background: rgba(212, 175, 55, 0.8);
    border-color: var(--accent-color);
}

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

.testimonial-card {
    background: var(--bg-white);
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-stars {
    color: var(--primary-color);
    font-size: 1.35rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.35rem;
    box-shadow: var(--shadow-gold);
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Registration Section */
.registration {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.registration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.registration-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.registration-text .section-tag {
    background: rgba(212, 175, 55, 0.15);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--accent-color);
    background-clip: unset;
    padding: 12px 28px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.registration-text .section-title {
    color: var(--bg-white);
}

.registration-text p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.8;
}

.registration-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.125rem;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.registration-form-container {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.registration-button-wrapper {
    text-align: center;
    width: 100%;
}

.registration-button-wrapper h3 {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.button-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    font-size: 1.15rem;
    background: #25D366;
    color: var(--bg-white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    color: var(--bg-white);
}

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
}

.registration-form h3 {
    font-size: 1.75rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

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

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 20px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: var(--bg-white);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-section h3 {
    font-size: 1.75rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 15px;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-section ul li a {
    color: var(--bg-white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 1;
}

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

/* Responsive */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        width: 100%;
        padding: 15px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .nav a::after {
        display: none;
    }

    .btn-nav {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .diferenciais-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .inspiration-section {
        padding: 80px 0;
    }

    .inspiration-content {
        text-align: center;
        max-width: 100%;
        padding: 0 20px;
    }

    .inspiration-title {
        font-size: 2.5rem;
        margin-bottom: 35px;
        line-height: 1.3;
    }

    .inspiration-text {
        font-size: 1.125rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .inspiration-highlight {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-top: 40px;
        padding: 30px 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .registration-content {
        grid-template-columns: 1fr;
    }

    .hero-dates {
        gap: 20px;
    }

    .date-item {
        padding: 12px 20px;
    }

    .date-text {
        font-size: 1.15rem;
    }

    .hero-stats {
        gap: 40px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }

    .carousel-container {
        border-radius: 0;
    }

    .video-section {
        padding: 60px 0;
        overflow-x: hidden;
    }

    .video-section > .container {
        padding: 0 20px;
    }

    .video-section .section-header {
        margin-bottom: 40px;
    }

    .video-container {
        width: 260px;
        height: 462px;
        border-radius: 18px;
    }
}

@media (max-width: 640px) {
    .video-section {
        padding: 50px 0;
        overflow-x: hidden;
    }

    .video-section > .container {
        padding: 0 15px;
    }

    .video-section .section-header {
        margin-bottom: 35px;
        padding: 0;
    }

    .video-section .section-title {
        font-size: 1.75rem;
    }

    .video-section .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .video-section > .container {
        padding: 0 15px;
        position: relative;
    }

    .video-section > .container::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85%;
        max-width: 280px;
        height: 480px;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(244, 208, 63, 0.06) 100%);
        border-radius: 25px;
        z-index: 0;
        pointer-events: none;
    }

    .video-container {
        width: 75%;
        max-width: 240px;
        height: auto;
        aspect-ratio: 9 / 16;
        margin: 0 auto;
        border-radius: 15px;
        position: relative;
        z-index: 1;
    }

    .video-player {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

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

    .video-section > .container {
        padding: 0 12px;
    }

    .video-section .section-header {
        margin-bottom: 30px;
    }

    .video-section > .container::before {
        width: 82%;
        max-width: 240px;
        height: 430px;
        border-radius: 22px;
    }

    .video-container {
        width: 70%;
        max-width: 210px;
        border-radius: 12px;
        border-width: 1.5px;
    }

    .video-player {
        object-fit: contain;
    }

    .video-section .section-title {
        font-size: 1.5rem;
    }

    .video-section .section-subtitle {
        font-size: 0.9rem;
        padding: 0 5px;
    }
}

@media (max-width: 640px) {
    .diferenciais {
        padding: 60px 0;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .inspiration-section {
        padding: 60px 0;
    }

    .inspiration-content {
        text-align: center;
        padding: 0 15px;
    }

    .inspiration-title {
        font-size: 2rem;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .inspiration-text {
        font-size: 1.05rem;
        margin-bottom: 20px;
        line-height: 1.8;
        padding: 0 10px;
    }

    .inspiration-highlight {
        font-size: 1.15rem;
        line-height: 1.8;
        margin-top: 30px;
        padding: 25px 15px;
    }

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

    .hero-dates {
        gap: 15px;
        margin: 25px auto 35px;
    }

    .date-item {
        padding: 12px 20px;
        flex: 1;
        min-width: 140px;
    }

    .date-text {
        font-size: 1.1rem;
    }

    .date-location {
        font-size: 0.85rem;
    }

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

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .program-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .carousel-container {
        border-radius: 0;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .testimonials-carousel-container {
        border-radius: 15px;
    }

    .testimonials-carousel-dot {
        width: 10px;
        height: 10px;
    }
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    color: var(--bg-white);
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 640px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

