/* ========================================
   CONFIGURAÇÕES BASE - IDÊNTICAS À HOME
   ======================================== */
   *, *::before, *::after {
    box-sizing: border-box;
}

body, h1, h2, h3, h4, p, ul, ol, li, figure {
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #C9A848; /* Dourado - EXATAMENTE IGUAL À HOME */
    --secondary-color: #1a1a1a;
    --text-color: #ffffff;
    --overlay-color: rgba(0, 0, 0, 0.65);
    --font-main: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #000;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   HEADER - MELHORADO PARA DESKTOP
   ======================================== */
header {
    background-color: rgba(3, 3, 3, 0.8);
    padding: 1rem 2rem; /* Aumentado padding lateral */
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    transition: background-color 0.3s ease;
    max-width: 1400px; /* Limitando largura máxima */
    margin: 0 auto; /* Centralizando */
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
}

.logo img {
    max-width: 150px;
    height: auto;
}

/* ========================================
   MENU MOBILE - VERSÃO ORIGINAL (BOA)
   ======================================== */
nav {
    position: relative;
}

.menu-icon {
    display: block;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
}

/* Menu container (mobile overlay) */
.menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #1a1a1a;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding-top: 2rem;
}

.menu.menu-visible {
    display: flex;
    transform: translateX(0);
}

.close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    display: block;
}

.menu-logo {
    margin-bottom: 2rem;
}

.menu-logo img {
    max-width: 120px;
    height: auto;
}

.menu ul {
    list-style: none;
    width: 100%;
    padding: 0;
}

.menu ul li {
    text-align: center;
    margin: 1rem 0;
}

.menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem;
    transition: color 0.3s;
}

.menu ul li a:hover {
    color: #C9A848;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}

.overlay.active {
    display: block;
}

/* ========================================
   MENU DESKTOP - OTIMIZADO E CENTRALIZADO
   ======================================== */
@media (min-width: 1024px) {
    /* Header com largura controlada */
    header {
        left: 50%;
        transform: translateX(-50%);
        width: 95%;
        max-width: 1400px;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .menu-icon {
        display: none;
    }
    
    .menu {
        display: flex !important;
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        transform: none;
        flex-direction: row;
        align-items: center;
        justify-content: center; /* Centralizado */
        padding: 0;
        margin: 0 auto; /* Centralizando ainda mais */
    }
    
    .close-menu,
    .menu-logo {
        display: none;
    }
    
    .menu ul {
        display: flex;
        align-items: center;
        gap: 3rem; /* Aumentado o espaçamento */
        width: auto;
        justify-content: center;
    }
    
    .menu ul li {
        margin: 0;
    }
    
    .menu ul li a {
        font-size: 1.1rem; /* Ligeiramente maior */
        font-weight: 500;
        padding: 1rem 1.5rem; /* Mais padding */
        position: relative;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .menu ul li a::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    
    .menu ul li a:hover {
        background-color: rgba(201, 168, 72, 0.1);
        color: var(--primary-color);
    }
    
    .menu ul li a:hover::after {
        width: 70%;
    }
    
    /* Link ativo */
    .menu ul li a[aria-current="page"] {
        color: var(--primary-color);
        background-color: rgba(201, 168, 72, 0.15);
    }
    
    .menu ul li a[aria-current="page"]::after {
        width: 70%;
    }
    
    .overlay {
        display: none !important;
    }
}

/* Desktop Large - Ainda mais centralizado */
@media (min-width: 1440px) {
    header {
        width: 90%;
        max-width: 1600px;
        padding: 1.5rem 3rem;
    }
    
    .menu ul {
        gap: 4rem;
    }
    
    .menu ul li a {
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
    }
}

/* ========================================
   HERO SECTION - IMPACTANTE E PROFISSIONAL
   ======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1);
    transition: transform 20s ease-in-out;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(26, 26, 26, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    color: var(--text-color);
}

.hero-text {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1.2s ease 0.5s forwards;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-separator {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto 2rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    text-align: justify;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
    cursor: pointer;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    position: relative;
    margin: 0 auto;
    animation: bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
}

/* ========================================
   ANIMAÇÕES PARA HERO SECTION
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* ========================================
   RESPONSIVIDADE DA HERO SECTION
   ======================================== */
@media (max-width: 768px) {
    .hero-section {
        min-height: 600px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        margin-bottom: 1.5rem;
    }
    
    .hero-separator {
        width: 80px;
        margin-bottom: 1.5rem;
    }
    
    .scroll-indicator {
        bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        min-height: 800px;
    }
    
    .hero-title {
        margin-bottom: 2rem;
    }
    
    .hero-separator {
        width: 120px;
    }
}

/* ========================================
   OTIMIZAÇÕES DE PERFORMANCE
   ======================================== */
.hero-image {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .hero-image {
        transition: none;
    }
    
    .hero-image:hover {
        transform: none;
    }
    
    .hero-text {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .hero-separator,
    .scroll-indicator {
        animation: none;
        opacity: 1;
    }
    
    .scroll-arrow {
        animation: none;
    }
}

/* ========================================
   CARDS SECTION - PROFISSIONAL E IMPACTANTE
   ======================================== */
.cards-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(201, 168, 72, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(201, 168, 72, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.section-separator {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto 2rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.9s forwards;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ========================================
   PROFILE CARDS - DESIGN SOFISTICADO
   ======================================== */
.profile-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

.profile-card:nth-child(1) { animation-delay: 0.2s; }
.profile-card:nth-child(2) { animation-delay: 0.4s; }
.profile-card:nth-child(3) { animation-delay: 0.6s; }

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 168, 72, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.profile-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(201, 168, 72, 0.2);
}

.profile-card:hover::before {
    opacity: 1;
}

/* Card Image Container */
.card-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.8) contrast(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    transition: opacity 0.6s ease;
}

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

.profile-card:hover .card-overlay {
    opacity: 0.8;
}

/* Card Content */
.card-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0.8;
    transform: translateY(10px);
    transition: all 0.6s ease;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(10px);
    transition: all 0.6s ease;
}

.card-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    transform: translateY(10px);
    transition: all 0.6s ease;
}

.profile-card:hover .card-icon {
    transform: translateY(0) scale(1.1);
    opacity: 1;
}

.profile-card:hover .card-title {
    transform: translateY(0);
    color: var(--primary-color);
}

.profile-card:hover .card-description {
    transform: translateY(0);
    color: rgba(255, 255, 255, 0.9);
}

/* Card Stats */
.card-stats {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
    flex: 1;
    transform: translateY(15px);
    opacity: 0.8;
    transition: all 0.6s ease;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(201, 168, 72, 0.3);
}

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

.profile-card:hover .stat {
    transform: translateY(0);
    opacity: 1;
}

/* Hover Effect Overlay */
.card-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(201, 168, 72, 0.1) 0%,
        transparent 50%,
        rgba(201, 168, 72, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 3;
}

.profile-card:hover .card-hover-effect {
    opacity: 1;
}

/* ========================================
   VARIAÇÕES DE CORES PARA CADA CARD
   ======================================== */
.profile-card[data-card="1"] {
    border-top: 3px solid var(--primary-color);
}

.profile-card[data-card="2"] {
    border-top: 3px solid #8B4513;
}

.profile-card[data-card="3"] {
    border-top: 3px solid #4A90E2;
}

.profile-card[data-card="1"]:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(201, 168, 72, 0.3);
}

.profile-card[data-card="2"]:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(139, 69, 19, 0.3);
}

.profile-card[data-card="3"]:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(74, 144, 226, 0.3);
}

/* ========================================
   RESPONSIVIDADE DOS CARDS
   ======================================== */
@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .card-image-container {
        height: 250px;
    }
    
    .card-content {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .card-image-container {
        height: 280px;
    }
    
    .card-content {
        padding: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .cards-grid {
        gap: 3rem;
    }
    
    .card-image-container {
        height: 320px;
    }
}

/* ========================================
   OTIMIZAÇÕES DE PERFORMANCE
   ======================================== */
.profile-card {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

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

@media (prefers-reduced-motion: reduce) {
    .profile-card {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .profile-card:hover {
        transform: none;
    }
    
    .card-image {
        transition: none;
    }
    
    .profile-card:hover .card-image {
        transform: none;
    }
}   


.testimonials-section {
    width: 100%;
    background: linear-gradient(120deg,#18171b 60%, #303131 100%);
    padding: 6rem 0 5rem 0;
    display: flex; justify-content: center;
  }
  
  .testimonials-container {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .testimonials-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-color);
    letter-spacing: 1px;
  }
  
  .testimonials-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .testimonials-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 340px;
    display: flex;
    overflow: hidden;
  }
  
  .testimonial {
    flex: 0 0 100%;
    min-width: 100%;
    opacity: 0;
    transform: scale(0.97) translateY(40px);
    transition:
      opacity 0.5s cubic-bezier(.53,.04,.43,1.56),
      transform 0.6s cubic-bezier(.53,.04,.43,1.56);
    pointer-events: none;
    position: absolute;
    left: 0; top: 0;
  }
  .testimonial.is-active {
    opacity: 1;
    pointer-events: all;
    transform: scale(1) translateY(0);
    position: relative;
    z-index: 2;
  }
  
  .testimonial-photo {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem auto;
    border: 2.5px solid var(--primary-color);
    box-shadow: 0 2px 15px 0 #0d0d0d;
  }
  
  .testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display:block;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
    color: #fff;
    background: rgba(23,21,33,0.75);
    border-radius: 1rem;
    line-height: 1.6;
    padding: 1.2rem 1.3rem;
    margin: 0 0 1.5rem 0;
    box-shadow: 0 3px 16px rgba(0,0,0,0.08);
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    text-align: justify;
  }
  
  .testimonial-meta {
    text-align: center;
  }
  .testimonial-meta .name {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary-color);
    letter-spacing: 0.2px;
  }
  .testimonial-meta .role {
    font-size: .94rem;
    color: #bdbdbd;
    margin-top: 0.2rem;
    display: block;
  }
  
  .testimonial-arrow {
    border: none;
    background: none;
    color: var(--primary-color);
    font-size: 2.2rem;
    cursor: pointer;
    padding: 0 1.1rem;
    transition: color 0.2s;
    user-select: none;
    outline: none;
  }
  .testimonial-arrow:disabled {
    opacity: 0.25;
    cursor: default;
  }
  .testimonial-arrow:hover:not(:disabled) {
    color: #ffffff;
  }
  
  .testimonial-dots {
    margin: 2rem 0 0;
    text-align: center;
  }
  .dot {
    width: 14px;
    height: 14px;
    margin: 0 6px;
    border-radius: 50%;
    border: 2.1px solid var(--primary-color);
    background: transparent;
    display: inline-block;
    cursor: pointer;
    transition: background 0.26s;
    padding: 0;
    vertical-align: middle;
  }
  .dot.is-active {
    background: var(--primary-color);
  }
  
  @media (max-width: 600px) {
    .testimonials-title { font-size: 1.2rem; }
    .testimonials-section { padding: 3.5rem 0 2rem 0; }
    .testimonial-text { font-size: 0.97rem; padding: 0.9rem 0.8rem; }
    .testimonial-photo { width: 60px; height: 60px; }
  }
  



  




  /* ========================================
   BACKSTAGE SECTION - STORIES STYLE
   ======================================== */
.backstage-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.backstage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(201, 168, 72, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(201, 168, 72, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

/* ========================================
   BACKSTAGE CONTAINER - STORIES LAYOUT
   ======================================== */
.backstage-container {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(201, 168, 72, 0.3);
}

/* ========================================
   STORIES NAVIGATION
   ======================================== */
.stories-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 -3rem;
    pointer-events: none;
}

.story-nav {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    font-size: 1.2rem;
    pointer-events: all;
    opacity: 0.8;
}

.story-nav:hover {
    background: var(--primary-color);
    color: #000;
    transform: scale(1.1);
    opacity: 1;
}

.story-nav.prev {
    left: -25px;
}

.story-nav.next {
    right: -25px;
}

/* ========================================
   STORIES VIEWPORT
   ======================================== */
.stories-viewport {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
    background: #000;
}

.stories-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   STORY ITEM - INDIVIDUAL STORY
   ======================================== */
.story-item {
    flex: 0 0 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-item.active {
    opacity: 1;
    transform: scale(1);
}

/* Story Header */
.story-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 1.5rem 1.5rem 0;
}

.story-progress {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #fff);
    border-radius: 2px;
    width: 0%;
    transition: width 5s linear;
}

.story-item.active .progress-bar {
    width: 100%;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.story-title {
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.story-time {
    font-size: 0.9rem;
    opacity: 0.7;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

/* ========================================
   STORY MEDIA
   ======================================== */
.story-media {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85) contrast(1.1);
    transition: transform 5s ease-out;
}

.story-item.active .story-image {
    transform: scale(1.05);
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

/* ========================================
   STORY CONTENT
   ======================================== */
.story-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 2rem 1.5rem;
}

/* Story Sticker */
.story-sticker {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    animation: sticker-appear 0.8s ease 1s forwards;
}

.sticker-text {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(201, 168, 72, 0.4);
    max-width: 280px;
}

.sticker-emoji {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.sticker-text p {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    line-height: 1.3;
}

/* Story Caption */
.story-caption {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 1.2rem;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: caption-appear 0.8s ease 1.5s forwards;
}

.story-caption p {
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ========================================
   STORIES INDICATORS
   ======================================== */
.stories-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(201, 168, 72, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator.active {
    border-color: var(--primary-color);
    transform: scale(1.2);
}

.indicator.active::after {
    width: 8px;
    height: 8px;
}

.indicator:hover:not(.active) {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes sticker-appear {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* ========================================
   RESPONSIVIDADE
   ======================================== */
@media (max-width: 768px) {
    .backstage-section {
        padding: 4rem 0;
    }
    
    .backstage-container {
        max-width: 350px;
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .stories-viewport {
        height: 500px;
    }
    
    .story-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .story-nav.prev {
        left: -20px;
    }
    
    .story-nav.next {
        right: -20px;
    }
    
    .story-content {
        padding: 1.5rem 1rem;
    }
    
    .sticker-text {
        padding: 0.8rem 1.2rem;
        max-width: 240px;
    }
    
    .sticker-text p {
        font-size: 0.9rem;
    }
    
    .story-caption {
        padding: 1rem;
    }
    
    .story-caption p {
        font-size: 0.9rem;
    }
}

@media (min-width: 1024px) {
    .backstage-container {
        max-width: 600px;
    }
    
    .stories-viewport {
        height: 700px;
    }
    
    .story-nav.prev {
        left: -30px;
    }
    
    .story-nav.next {
        right: -30px;
    }
}

/* ========================================
   ACESSIBILIDADE
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .story-item,
    .stories-track,
    .story-image,
    .story-nav {
        transition: none;
    }
    
    .story-item.active .story-image {
        transform: none;
    }
    
    .sticker-text,
    .story-caption {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .progress-bar {
        transition: none;
    }
}

@media (prefers-color-scheme: light) {
    .backstage-section {
        background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 50%, #f0f0f0 100%);
    }
    
    .backstage-container {
        background: linear-gradient(145deg, #ffffff, #f5f5f5);
        color: #1a1a1a;
    }
}





/* ========================================
   FOOTER PRINCIPAL - DESIGN PROFISSIONAL
   ======================================== */
   .main-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: var(--text-color);
    position: relative;
    margin-top: auto;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* ========================================
   FOOTER CONTENT - ESTRUTURA PRINCIPAL
   ======================================== */
.footer-content {
    position: relative;
    z-index: 2;
}

.footer-top {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

/* ========================================
   FOOTER COLUMNS - COLUNAS DO GRID
   ======================================== */
.footer-column {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

/* ========================================
   FOOTER BRAND - COLUNA PRINCIPAL
   ======================================== */
.footer-brand {
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(1.1);
}

.footer-tagline {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.footer-tagline strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Items */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* ========================================
   FOOTER NAVIGATION E SERVICES
   ======================================== */
.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.7;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.footer-links li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color);
    background: rgba(201, 168, 72, 0.1);
    transform: translateX(5px);
}

.footer-links li a:hover::before {
    width: 100%;
}

/* ========================================
   FOOTER SOCIAL - REDES E CTA
   ======================================== */
.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(201, 168, 72, 0.1);
    border: 2px solid rgba(201, 168, 72, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 168, 72, 0.3);
}

.social-link:hover::before {
    left: 100%;
}

.social-link i {
    font-size: 1.3rem;
}

/* Footer CTA */
.footer-cta {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(201, 168, 72, 0.2);
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #e6c456);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(201, 168, 72, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(201, 168, 72, 0.4);
    background: linear-gradient(135deg, #e6c456, var(--primary-color));
}

.cta-button i {
    font-size: 1.1rem;
}

/* ========================================
   FOOTER MIDDLE - ÁREA DE ATUAÇÃO
   ======================================== */
.footer-middle {
    padding: 2.5rem 0;
    background: rgba(26, 26, 26, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.coverage-area {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.coverage-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.coverage-title i {
    font-size: 1.3rem;
}

.coverage-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.primary-location {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    background: rgba(201, 168, 72, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(201, 168, 72, 0.3);
}

.secondary-locations {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 1.5;
}

/* ========================================
   FOOTER BOTTOM - COPYRIGHT
   ======================================== */
.footer-bottom {
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.8);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--primary-color);
}

.site-credits {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ========================================
   RESPONSIVIDADE - TABLET
   ======================================== */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: left;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 2rem;
        align-items: start;
    }
    
    .footer-logo {
        margin-bottom: 0;
    }
    
    .footer-tagline {
        text-align: left;
        margin: 0 0 1.5rem 0;
    }
    
    .footer-contact {
        align-items: flex-start;
    }
    
    .footer-title,
    .footer-links {
        text-align: left;
    }
    
    .footer-title::after {
        left: 0;
        transform: none;
    }
    
    .footer-links {
        align-items: flex-start;
    }
    
    .footer-social {
        text-align: left;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .coverage-content {
        flex-direction: row;
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ========================================
   RESPONSIVIDADE - DESKTOP
   ======================================== */
@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 4rem;
    }
    
    .footer-brand {
        grid-column: auto;
        display: block;
        text-align: left;
    }
    
    .footer-tagline {
        max-width: none;
    }
    
    .footer-top {
        padding: 5rem 0 4rem;
    }
    
    .footer-middle {
        padding: 3rem 0;
    }
    
    .coverage-content {
        flex-direction: row;
        gap: 3rem;
    }
}

/* ========================================
   RESPONSIVIDADE - DESKTOP LARGE
   ======================================== */
@media (min-width: 1200px) {
    .footer-grid {
        gap: 5rem;
    }
    
    .footer-top {
        padding: 6rem 0 5rem;
    }
}

/* ========================================
   ANIMAÇÕES
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   ACESSIBILIDADE
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .footer-column {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .social-link,
    .cta-button,
    .contact-item,
    .footer-links li a {
        transition: none;
    }
    
    .social-link:hover,
    .cta-button:hover {
        transform: none;
    }
}

/* Focus states para acessibilidade */
.social-link:focus,
.cta-button:focus,
.footer-links a:focus,
.legal-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

/* ========================================
   OTIMIZAÇÕES DE PERFORMANCE
   ======================================== */
.cta-button,
.social-link {
    will-change: transform;
}






/* ========================================
   CONTACT MODAL - MODAL DE CONTATO MOBILE
   ======================================== */
   .contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.contact-modal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    border-radius: 20px 20px 0 0;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-modal.active .contact-modal-content {
    transform: translateY(0);
}

.contact-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.contact-modal-close:hover {
    background: rgba(201, 168, 72, 0.1);
}

.contact-modal h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(201, 168, 72, 0.1);
    border: 2px solid rgba(201, 168, 72, 0.3);
    border-radius: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-2px);
}

.contact-option.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.contact-option i {
    font-size: 1.5rem;
}
