/* Training Camp Serra do Brigadeiro - Design Moderno 2024 */

/* Importação de fontes modernas */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Reset moderno */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de cores da identidade visual */
    --primary-dark: #162114;
    --primary-medium: #294122;
    --primary-light: #EBEBDF;
    --accent-red: #fe4e4e;
    --accent-blue: #04335A;
    
    /* Cores complementares modernas */
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Tipografia */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Space Grotesk', sans-serif;
    
    /* Espaçamentos */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Bordas */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Sombras modernas */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* Base styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container moderno */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (min-width: 640px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

/* Header moderno */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(22, 33, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(22, 33, 20, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) 0;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 40px;
    width: auto;
    filter: brightness(1.1) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Navegação moderna */
.nav {
    display: flex;
    gap: var(--space-2xl);
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: #EBEBDF;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-medium);
    transition: width 0.3s ease;
}

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

/* Hero section moderno */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
    padding: var(--space-4xl) var(--space-lg);
    text-align: center;
}

/* Container do vídeo moderno */
.video-container {
    width: 100%;
    max-width: 900px;
    margin-bottom: var(--space-3xl);
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.video-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 500;
}

.video-placeholder::before {
    content: '▶';
    font-size: 3rem;
    margin-right: var(--space-lg);
    opacity: 0.8;
}

/* Coordenadas modernas */
.coordinates {
    position: absolute;
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-medium);
    background: rgba(255, 255, 255, 0.9);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(10px);
}

.coordinates.top-left {
    top: var(--space-md);
    left: var(--space-md);
}

.coordinates.bottom-right {
    bottom: var(--space-md);
    right: var(--space-md);
}

/* Títulos modernos */
.hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-sm);
    font-weight: 400;
}

.hero-date {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-description {
    max-width: 600px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Seções modernas */
section {
    padding: var(--space-4xl) 0;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: var(--space-3xl);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Grid de modalidades moderno */
.modalidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

/* Cards modernos */
.modalidade-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.modalidade-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-medium);
}

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

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(22, 33, 20, 0.1) 50%,
        rgba(22, 33, 20, 0.3) 100%
    );
}

.card-content {
    padding: var(--space-2xl);
}

.card-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.card-duration {
    font-size: 0.875rem;
    color: var(--accent-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
}

.card-description {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.card-includes {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.card-includes li {
    color: var(--gray-600);
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: var(--space-lg);
    font-size: 0.9rem;
}

.card-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-medium);
    font-weight: 700;
}

.card-price {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: var(--space-lg);
    line-height: 1;
}

/* Botões modernos */
.card-button {
    display: block;
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    background: var(--primary-dark);
    color: var(--white);
    text-decoration: none;
    text-align: center;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-button:hover {
    background: var(--primary-medium);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Seções com background */
.section-with-bg {
    position: relative;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(22, 33, 20, 0.8);
    backdrop-filter: blur(2px);
}

.section-with-bg .container {
    position: relative;
    z-index: 2;
}

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

/* Grid de programação */
.programacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.programacao-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.programacao-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.programacao-card ul {
    list-style: none;
}

.programacao-card li {
    margin-bottom: var(--space-sm);
    padding-left: var(--space-lg);
    position: relative;
    font-size: 0.95rem;
}

.programacao-card li::before {
    position: absolute;
    left: 0;
    top: 0;
}

/* FAQ moderno */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-medium);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: var(--space-xl);
    background: var(--gray-50);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.faq-question:hover {
    background: var(--primary-light);
}

.faq-answer {
    padding: 0 var(--space-xl) var(--space-xl);
    color: var(--gray-600);
    line-height: 1.6;
    display: none;
}

.faq-answer.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* WhatsApp button moderno e melhorado */
.whatsapp-button {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    animation: whatsappPulse 3s infinite;
    border: 3px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.whatsapp-button:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    animation-play-state: paused;
}

.whatsapp-button:active {
    transform: scale(1.05);
}

/* Animação de pulsação para o WhatsApp */
@keyframes whatsappPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    }
}

/* Efeito de ondas no WhatsApp */
.whatsapp-button::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    z-index: -1;
    opacity: 0;
    animation: whatsappRipple 2s infinite;
}

@keyframes whatsappRipple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Footer moderno */
.footer {
    background: var(--primary-dark);
    background-image: url('footer-pattern.png');
    background-size: 400px 400px;
    background-repeat: repeat;
    background-blend-mode: overlay;
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-xl);
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(22, 33, 20, 0.8);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer p {
    margin-bottom: var(--space-sm);
}

.footer .tagline {
    font-style: italic;
    color: var(--gray-400);
}

/* Responsividade */
@media (max-width: 768px) {
    .header-content {
        padding: var(--space-md) var(--space-lg);
    }
    
    .nav {
        display: none; /* Implementar menu mobile depois */
    }
    
    .hero {
        padding: var(--space-3xl) var(--space-lg);
    }
    
    .video-container {
        margin-bottom: var(--space-2xl);
    }
    
    .video-placeholder {
        height: 300px;
        font-size: 1rem;
    }
    
    .modalidades-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .programacao-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .card-content {
        padding: var(--space-xl);
    }
    
    .whatsapp-button {
        bottom: var(--space-lg);
        right: var(--space-lg);
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero {
        padding: var(--space-2xl) var(--space-md);
    }
    
    .video-placeholder {
        height: 250px;
    }
    
    .card-content {
        padding: var(--space-lg);
    }
    
    .programacao-card {
        padding: var(--space-lg);
    }
}


/* Estilos responsivos para seção do kit */
@media (max-width: 768px) {
    section[style*="grid-template-columns: 1fr 1fr"] .container > div {
        grid-template-columns: 1fr !important;
        gap: var(--space-2xl) !important;
        text-align: center;
    }
    
    section[style*="grid-template-columns: 1fr 1fr"] h3 {
        font-size: 1.5rem !important;
    }
}


/* Foco na parte superior para cards específicos */
.modalidade-card:nth-child(2) .card-image img,
.modalidade-card:nth-child(3) .card-image img {
    object-position: center 40%;
}

/* Ajuste específico para Experiência Essencial e Dia de Montanha */
.modalidade-card .card-image img[src*="classicu2025-08-31074641.139.JPG"],
.modalidade-card .card-image img[src*="classicu2025-08-31082308.307.JPG"] {
    object-position: center 40%;
}


/* ===== MELHORIAS VISUAIS E ANIMAÇÕES ===== */

/* Animação de entrada suave para elementos */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Aplicar animações aos elementos principais */
.hero-content {
    animation: fadeInUp 1s ease-out;
}

.section-title {
    animation: fadeInUp 0.8s ease-out;
}

.modalidade-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.modalidade-card:nth-child(1) { animation-delay: 0.1s; }
.modalidade-card:nth-child(2) { animation-delay: 0.2s; }
.modalidade-card:nth-child(3) { animation-delay: 0.3s; }

/* Efeitos de hover melhorados */
.modalidade-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modalidade-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

/* Efeito parallax suave para seções com background */
.section-with-bg {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Melhorias no header */
.header {
    transition: all 0.3s ease;
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s ease;
}

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

/* Efeitos nos botões */
.card-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.card-button:hover::before {
    left: 100%;
}

/* Animação para FAQ */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
}

.faq-answer {
    animation: fadeIn 0.3s ease;
}

/* Efeito de loading suave */
.video-placeholder {
    position: relative;
    overflow: hidden;
}

.video-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Melhorias na galeria de imagens */
.section-with-bg img,
div[style*="grid-template-columns"] img {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.9);
}

div[style*="grid-template-columns"] > div:hover img {
    filter: brightness(1.1) contrast(1.1);
    transform: scale(1.05) rotate(1deg);
}

/* Efeito de scroll suave */
html {
    scroll-behavior: smooth;
}

/* Animação para coordenadas */
.coordinates {
    animation: fadeIn 1.5s ease-out;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

/* Efeito de pulsação para elementos importantes */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-date {
    animation: pulse 3s infinite;
}

/* Melhorias responsivas */
@media (max-width: 768px) {
    .modalidade-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .section-with-bg {
        background-attachment: scroll;
    }
}

/* Efeito de gradiente animado para seções especiais */
.hero {
    background: linear-gradient(-45deg, var(--primary-dark), var(--primary-medium), var(--accent-blue), var(--primary-dark));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Melhorias no footer */
footer, section:last-child {
    animation: fadeInUp 0.8s ease-out;
}



/* ===== BANNERS ROTATIVOS ===== */

/* Banners Rotativos */
.banners-section {
    position: relative;
}

.banners-carousel {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: var(--space-2xl);
    display: flex;
    align-items: center;
}

.banner-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.banner-slide.prev {
    transform: translateX(-100%);
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-2xl);
    width: 100%;
    align-items: center;
}

.banner-text {
    color: white;
}

.banner-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.banner-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: white;
}

.banner-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.banner-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    max-width: 500px;
}

.banner-highlight {
    font-size: 0.9rem;
    color: #FFD700;
    font-weight: 500;
}

.banner-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.banner-icon {
    font-size: 4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.banner-achievement {
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #FFD700;
    line-height: 1.2;
}

.banner-achievement span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Indicadores do Carrossel */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

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

.indicator.active {
    background: #FFD700;
    border-color: #FFD700;
    transform: scale(1.2);
}

.indicator:hover {
    border-color: rgba(255, 215, 0, 0.6);
}

/* Responsividade dos Banners */
@media (max-width: 768px) {
    .banners-carousel {
        height: auto;
        min-height: 350px;
    }
    
    .banner-slide {
        padding: var(--space-lg);
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }
    
    .banner-title {
        font-size: 1.8rem;
    }
    
    .banner-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .banner-description {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 1.5rem;
    }
    
    .banner-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .banner-slide {
        padding: var(--space-md);
    }
}


/* ===== SEÇÃO PEDRO GUEDES ===== */

.pedro-section {
    position: relative;
}

.pedro-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-4xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pedro-text {
    color: white;
}

.pedro-name {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.pedro-subtitle {
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: var(--space-xl);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pedro-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.pedro-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    height: 400px;
}

.pedro-photo {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transition: all 0.3s ease;
    position: relative;
}

.pedro-photo:first-child {
    grid-row: 1 / 3;
}

.pedro-photo:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.pedro-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.pedro-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pedro-photo:hover::before {
    opacity: 1;
}

/* Responsividade da seção Pedro */
@media (max-width: 768px) {
    .pedro-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .pedro-name {
        font-size: 2.5rem;
    }
    
    .pedro-subtitle {
        font-size: 1.1rem;
    }
    
    .pedro-description {
        max-width: none;
        font-size: 1.1rem;
    }
    
    .pedro-gallery {
        height: 300px;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
    }
    
    .pedro-photo:first-child {
        grid-row: 1;
    }
}

@media (max-width: 480px) {
    .pedro-name {
        font-size: 2rem;
    }
    
    .pedro-gallery {
        height: auto;
        gap: var(--space-md);
    }
    
    .pedro-photo {
        height: 200px;
    }
}


/* ===== SEÇÃO LOJA VIRTUAL ===== */

.loja-section {
    position: relative;
}

.loja-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.loja-text {
    color: white;
}

.loja-subtitle {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.loja-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2xl);
}

.loja-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.loja-feature {
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.5;
    position: relative;
    padding-left: var(--space-lg);
}

.loja-feature::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #FFD700;
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-text {
    font-size: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.loja-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-2xl);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.loja-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.loja-visual {
    position: relative;
}

.loja-product-image {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.loja-product-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 58, 30, 0.9) 0%,
        rgba(44, 85, 48, 0.8) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: var(--radius-xl);
}

.loja-product-image:hover .product-overlay {
    opacity: 1;
}

.loja-frame {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.loja-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.loja-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.loja-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 58, 30, 0.9) 0%,
        rgba(44, 85, 48, 0.8) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: var(--radius-xl);
}

.loja-frame:hover .loja-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.loja-frame:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: #FFD700;
}

.overlay-content p {
    margin-bottom: var(--space-lg);
    color: rgba(255, 255, 255, 0.9);
}

.overlay-button {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    background: #FFD700;
    color: var(--primary-dark);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

/* Elementos decorativos da loja */
.loja-decoration {
    position: absolute;
    border: 2px solid rgba(255, 215, 0, 0.1);
    border-radius: 50%;
}

.loja-decoration-1 {
    top: 50px;
    left: 50px;
    width: 80px;
    height: 80px;
    animation: float 6s ease-in-out infinite;
}

.loja-decoration-2 {
    bottom: 50px;
    right: 50px;
    width: 120px;
    height: 120px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Responsividade da seção loja */
@media (max-width: 768px) {
    .loja-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .loja-subtitle {
        font-size: 1.8rem;
    }
    
    .loja-features {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .loja-frame {
        height: 300px;
    }
    
    .loja-decoration {
        display: none;
    }
}

@media (max-width: 480px) {
    .loja-subtitle {
        font-size: 1.5rem;
    }
    
    .loja-button {
        padding: var(--space-md) var(--space-lg);
        font-size: 1rem;
    }
    
    .loja-frame {
        height: 250px;
    }
}

