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

:root {
    --primary-color: #d4af37;
    --secondary-color: #f4d03f;
    --text-color: #ffffff;
    --bg-dark: #0a0a0a;
    --bg-secondary: #141414;
    --bg-card: #1a1a1a;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #c5a028;
    --accent-gold: #d4af37;
    --accent-gradient: linear-gradient(135deg, #b8860b 0%, #f4d99d 50%, #c19a2e 100%);
}

.gold-text,
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

html, body {
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-color);
    width: 100%;
    max-width: 100vw;
    /* Prevenir zoom no mobile */
    touch-action: pan-x pan-y;
    -ms-touch-action: pan-x pan-y;
}

body {
    margin: 0;
    height: auto;
    position: relative;
    /* Remover highlight de toque */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Prevenir zoom em todos os elementos interativos */
* {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Permitir seleção de texto em elementos de conteúdo */
p, h1, h2, h3, h4, h5, h6, span, a, li {
    -webkit-user-select: text;
    user-select: text;
}

/* Prevenir seleção em elementos interativos e imagens */
button, img, svg, .btn-compact, .header__btn {
    -webkit-user-select: none;
    user-select: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1300px;
    padding: 0 40px;
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

.scroll-dots {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.scroll-dots .dot {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: block;
}

.scroll-dots .dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.scroll-dots .dot:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
    transform: scale(1.2);
}

.scroll-dots .dot:hover::before {
    opacity: 1;
}

.scroll-dots .dot.active {
    background: rgba(212, 175, 55, 0.5);
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.scroll-dots .dot.active::before {
    opacity: 1;
}

.dot-label {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.scroll-dots .dot:hover .dot-label {
    opacity: 1;
    right: 28px;
}

@media (max-width: 1440px) {
    .scroll-dots {
        right: 20px;
    }
}

@media (max-width: 1280px) {
    .scroll-dots {
        right: 15px;
        gap: 20px;
    }
    
    .scroll-dots .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 1024px) {
    .scroll-dots {
        display: none;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: 72px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolling {
    transform: translateY(-100%);
}

.header .container {
    max-width: 100%;
    height: 100%;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.header__logo {
    display: flex;
    align-items: center;
    height: 40px;
}

.header__logo img {
    height: 40px;
    width: auto;
}

.header__nav {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 48px;
}

.header__list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.header__item {
    font-size: 15px;
    font-weight: 500;
}

.header__item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: transparent;
    border-radius: 10px;
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.header__item a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.header__item a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.header__item a:hover::before {
    opacity: 1;
}

.link-animation {
    position: relative;
    display: inline-block;
}

.link-animation::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 2px;
    width: 100%;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--accent-gradient);
    transition: transform 0.4s ease;
}

.link-animation:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.header__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    white-space: nowrap;
}

.header__btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.header__btn--primary {
    background: var(--accent-gradient);
    border-color: rgba(212, 175, 55, 0.4);
    color: #000000;
}

.header__btn--primary:hover {
    background: var(--accent-gradient);
    filter: brightness(1.1);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-1px);
}

.primary__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    background: rgba(212, 175, 55, 0.12);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.primary__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15), transparent);
    opacity: 1;
    transition: opacity 0.4s ease;
}

.primary__btn:hover {
    background: rgba(212, 175, 55, 0.18);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.3), 0 0 16px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.primary__btn:hover::before {
    opacity: 1;
}

.header__btn-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.header__btn-toggle i {
    width: 100%;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu .container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 30px 40px;
    height: 100%;
}

.mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    width: 100%;
}

.mobile-menu__top .header__logo {
    order: 1;
}

.mobile-menu__top .header__logo img {
    height: 40px;
    width: auto;
}

.mobile-menu__close {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 2;
}

.mobile-menu__close i {
    position: absolute;
    width: 100%;
    height: 2px;
    background: white;
    top: 50%;
    left: 0;
}

.mobile-menu__close i:first-child {
    transform: rotate(45deg);
}

.mobile-menu__close i:last-child {
    transform: rotate(-45deg);
}

.mobile-menu__bottom {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 20px;
}

.mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    list-style: none;
}

.mobile-menu__item {
    font-size: 18px;
    font-weight: 600;
}

.mobile-menu__item a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.mobile-menu__item a:hover {
    color: var(--gold);
}

.mobile-menu__btn {
    width: 100%;
    margin-top: 20px;
}

.return-btn {
    display: none !important;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

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

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

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

@media screen and (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

.chatbot-container {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 380px;
    height: auto;
    min-height: 400px;
    max-height: calc(100vh - 180px);
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideIn 0.3s ease;
    top: auto;
}

.chatbot-container.active {
    display: flex;
}

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

.chatbot-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(197, 160, 40, 0.2));
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.chatbot-title svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.chatbot-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-close:hover {
    color: white;
    transform: rotate(90deg);
}

.chatbot-close svg {
    width: 20px;
    height: 20px;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 200px;
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 3px;
}

.chatbot-message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 12px;
    animation: messageSlide 0.3s ease;
}

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

.bot-message {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    align-self: flex-start;
}

.user-message {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    align-self: flex-end;
}

.chatbot-message p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
}

.typing-indicator {
    padding: 16px 20px;
}

.typing-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.6);
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
    animation-delay: 0s;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.chatbot-quick-questions {
    display: flex;
    gap: 8px;
    padding: 15px 20px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-question {
    padding: 8px 14px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.quick-question:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.chatbot-input {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px 15px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.chatbot-input input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
}

.chatbot-input input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.chatbot-input button {
    background: var(--accent-gradient);
    border: none;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-input button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.chatbot-input button svg {
    width: 20px;
    height: 20px;
    color: #000000;
}

.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

.chatbot-toggle svg {
    width: 28px;
    height: 28px;
    color: #000000;
}

.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

/* Telas grandes (1200px - 1600px) */
@media screen and (min-width: 1200px) and (max-width: 1600px) {
    .chatbot-container {
        min-height: 450px;
        max-height: calc(100vh - 180px);
        bottom: 90px;
    }
}

/* Telas muito grandes (acima de 1600px) */
@media screen and (min-width: 1601px) {
    .chatbot-container {
        min-height: 500px;
        max-height: calc(100vh - 200px);
        bottom: 90px;
        width: 400px;
    }
}

/* Tablets e telas médias (993px - 1199px) */
@media screen and (min-width: 993px) and (max-width: 1199px) {
    .chatbot-container {
        right: 25px;
        width: 370px;
        min-height: 420px;
        max-height: calc(100vh - 170px);
        bottom: 85px;
    }
}

/* Tablets (até 992px) */
@media screen and (max-width: 992px) {
    .chatbot-container {
        right: 20px;
        width: 360px;
        min-height: 400px;
        max-height: calc(100vh - 160px);
        bottom: 85px;
    }
}

/* Tablets pequenos e smartphones grandes (até 768px) */
@media screen and (max-width: 768px) {
    .chatbot-container {
        right: 15px;
        left: 15px;
        width: auto;
        bottom: 90px;
        min-height: 380px;
        max-height: calc(100vh - 150px);
        max-width: 400px;
        margin: 0 auto;
    }
    
    .chatbot-toggle {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .chatbot-toggle svg {
        width: 24px;
        height: 24px;
    }
    
    .chatbot-header {
        padding: 16px;
    }
    
    .chatbot-messages {
        padding: 15px;
    }
    
    .chatbot-input {
        padding: 12px 15px;
    }
    
    .chatbot-quick-questions {
        padding: 12px 15px;
    }
}

/* Smartphones médios (até 576px) */
@media screen and (max-width: 576px) {
    .chatbot-container {
        right: 10px;
        left: 10px;
        bottom: 85px;
        min-height: 350px;
        max-height: calc(100vh - 140px);
        max-width: 100%;
        border-radius: 16px;
    }
    
    .chatbot-toggle {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
    
    .chatbot-toggle svg {
        width: 22px;
        height: 22px;
    }
    
    .chatbot-header {
        padding: 14px;
    }
    
    .chatbot-title {
        font-size: 14px;
    }
    
    .chatbot-title svg {
        width: 20px;
        height: 20px;
    }
    
    .chatbot-messages {
        padding: 12px;
    }
    
    .chatbot-message {
        max-width: 85%;
        padding: 10px 14px;
    }
    
    .chatbot-message p {
        font-size: 13px;
    }
    
    .quick-question {
        font-size: 11px;
        padding: 7px 12px;
    }
    
    .chatbot-input {
        padding: 10px 12px;
    }
    
    .chatbot-input input {
        font-size: 13px;
        padding: 9px 12px;
    }
    
    .chatbot-badge {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

/* Smartphones pequenos - OCULTAR CHATBOT (até 480px) */
@media screen and (max-width: 480px) {
    .chatbot-container,
    .chatbot-toggle {
        display: none !important;
    }
}

/* Timeline - Ocultar linha vertical e pontos no mobile */
@media screen and (max-width: 768px) {
    .timeline-line,
    .timeline-dot {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        position: absolute !important;
        left: -99999px !important;
        top: -99999px !important;
        z-index: -9999 !important;
        overflow: hidden !important;
        clip: rect(0, 0, 0, 0) !important;
        clip-path: inset(50%) !important;
    }
}

/* Telas muito pequenas - garantir que está oculto (até 400px) */
@media screen and (max-width: 400px) {
    .chatbot-container,
    .chatbot-toggle {
        display: none !important;
        visibility: hidden !important;
    }
}

.main {
    position: relative;
    overflow: hidden;
}

.logo-container {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.logo-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-background-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: transparent;
    touch-action: pan-y pinch-zoom;
}

.hero-background-slideshow .hero-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: none;
    z-index: 0;
    pointer-events: none;
    transform: translateX(0);
    will-change: transform, opacity;
}

.hero-background-slideshow .hero-slide-item.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

/* Garantir que o próximo slide apareça antes do anterior desaparecer (crossfade) */
.hero-background-slideshow .hero-slide-item:not(.active) {
    opacity: 0;
    z-index: 0;
    transform: translateX(0);
    pointer-events: none;
    visibility: visible;
    display: block;
}

/* No mobile, remover fade - apenas arraste direto */
@media screen and (max-width: 768px) {
    .hero-background-slideshow {
        background: transparent !important;
        touch-action: pan-y pinch-zoom;
    }
    
    .hero-background-slideshow .hero-slide-item {
        transition: none !important;
        opacity: 0;
        z-index: 0;
        transform: translateX(0);
        will-change: transform, opacity;
    }
    
    .hero-background-slideshow .hero-slide-item.active {
        opacity: 1 !important;
        z-index: 2;
        transition: none !important;
        transform: translateX(0);
    }
    
    /* Remover todas as transições de fade */
    .hero-background-slideshow .hero-slide-item.entering {
        opacity: 1 !important;
        z-index: 3;
        transition: none !important;
    }
    
    .hero-background-slideshow .hero-slide-item.exiting {
        opacity: 0 !important;
        z-index: 1;
        transition: none !important;
    }
    
    /* Garantir que o slide ativo sempre esteja totalmente visível */
    .hero-background-slideshow .hero-slide-item.active:not(.exiting) {
        opacity: 1 !important;
        z-index: 2;
        transition: none !important;
    }
}

.hero-background-slideshow .hero-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(10, 10, 10, 0.98) 0%,
        rgba(10, 10, 10, 0.95) 25%,
        rgba(10, 10, 10, 0.85) 40%,
        rgba(10, 10, 10, 0.5) 65%,
        rgba(10, 10, 10, 0.2) 85%,
        transparent 100%
    );
    z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
}

.hero__content-wrapper {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    padding-left: 0;
    align-items: flex-start;
}

.hero__logo-center {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 8px;
    padding-left: 55px;
}

.hero__badge-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.hero .hero-slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    opacity: 0.85;
}

.hero .hero-slide-arrow:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    opacity: 1;
}

.hero .hero-slide-arrow svg {
    width: 24px;
    height: 24px;
    color: #000000;
    stroke-width: 2.5;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero .hero-slide-arrow.hero-prev {
    left: 20px;
}

.hero .hero-slide-arrow.hero-next {
    right: 100px;
}

.hero .slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.hero .slide-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 0;
    padding: 0;
    outline: none;
}

.hero .slide-indicators .indicator:hover {
    background: rgba(212, 175, 55, 0.6);
    transform: scale(1.3);
}

.hero .slide-indicators .indicator.active {
    background: var(--gold);
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(20, 20, 20, 0.95) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.stats-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 40px 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(197, 160, 40, 0.05) 50%, rgba(212, 175, 55, 0.08) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(212, 175, 55, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.slideshow-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid rgba(212, 175, 55, 0.3);
    min-height: 550px;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 550px;
    min-height: 550px;
    overflow: hidden;
    background: #1a1a1a;
}

.slide-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    visibility: hidden;
}

.slide-item.active {
    opacity: 1 !important;
    z-index: 1;
    visibility: visible !important;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-placeholder {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 40px;
    z-index: 2;
    position: relative;
}

.slide-placeholder svg {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    color: rgba(212, 175, 55, 0.4);
}

.slide-placeholder p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.slide-placeholder strong {
    color: var(--gold);
    font-weight: 600;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 30px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.slide-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slide-control:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.slide-control svg {
    width: 24px;
    height: 24px;
    color: #000000;
}

.slide-control.prev {
    left: 20px;
}

.slide-control.next {
    right: 20px;
}

.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 0;
    padding: 0;
    outline: none;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
}

.indicator:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    background: var(--gold);
}

@media screen and (max-width: 1200px) {
    .hero__split-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        min-height: auto;
        padding: 30px 0;
    }
    
    .hero__info {
        text-align: center;
        padding: 0;
        align-items: center;
        width: 100%;
    }
    
    .hero__logo-compact {
        width: 120px;
        margin: 0 auto;
    }
    
    .hero__heading-compact {
        text-align: center;
    }
    
    .hero__subtitle-compact {
        text-align: center;
        max-width: 100%;
    }
    
    .hero__buttons-compact {
        width: 100%;
        align-items: stretch;
    }
    
    .btn-compact {
        max-width: 100%;
    }
    
    .hero__visual-container {
        height: 450px;
    }
    
    .hero-slide-arrow {
        width: 50px;
        height: 50px;
    }
    
    .hero-slide-arrow svg {
        width: 24px;
        height: 24px;
    }
    
    .slideshow-container {
        height: 450px;
    }
}

@media screen and (max-width: 1024px) {
    .hero .hero__container .hero__split-layout {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 40px !important;
    }
    
    .hero .hero__container .hero__split-layout .hero__info {
        order: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        align-items: center !important;
        grid-column: 1 !important;
        grid-row: 1 !important;
    }
    
    .hero .hero__container .hero__split-layout .hero__slideshow {
        order: 2 !important;
        width: 100% !important;
        max-width: 100% !important;
        grid-column: 1 !important;
        grid-row: 2 !important;
    }
    
    .hero .hero__container .hero__stats {
        order: 3 !important;
        width: 100% !important;
    }
    
    .hero__badge-logo-wrapper {
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hero__logo-center {
        transform: translateY(-20px);
        padding-left: 0;
    }

    .hero__logo-compact {
        margin: 0 auto 12px;
    }
    
    .hero__heading-compact,
    .hero__subtitle-compact {
        text-align: center !important;
    }
}

@media screen and (max-width: 968px) {
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-with-image.reverse {
        direction: ltr;
    }
    
    .content-image img {
        height: 350px;
    }
    
    .success-gallery {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }
    
    .gallery-item img {
        height: 280px;
    }
    
    .feature-highlight img {
        height: 350px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header {
        height: 65px;
        padding: 0 20px;
    }
    
    .header__logo img {
        height: 32px;
    }
    
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
        display: block;
        position: relative;
    }
    
    /* Overlay com sombra no mobile - apenas na parte inferior */
    .hero-overlay {
        display: block;
        background: linear-gradient(
            to bottom,
            transparent 0%,
            transparent 15%,
            rgba(0, 0, 0, 0.25) 30%,
            rgba(0, 0, 0, 0.55) 50%,
            rgba(0, 0, 0, 0.8) 70%,
            rgba(0, 0, 0, 0.95) 100%
        );
    }
    
    /* Slideshow de fundo no mobile - altura adequada */
    .hero-background-slideshow {
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        margin-bottom: 0;
        border-radius: 0;
        background: transparent !important;
    }
    
    /* Garantir que o hero tenha background da primeira imagem para evitar preto */
    .hero {
        background: var(--bg-dark);
    }
    
    .hero__container {
        padding: 0;
        flex-direction: column;
        align-items: center;
        gap: 0;
        position: relative;
        z-index: 2;
        min-height: 550px;
        display: flex;
        justify-content: flex-end;
        padding-bottom: 40px;
    }
    
    .hero__content-wrapper {
        max-width: 100%;
        align-items: center;
        text-align: center;
        background: transparent;
        padding: 20px 16px;
        width: 100%;
        gap: 3px;
    }
    
    .hero__logo-center {
        justify-content: center;
        margin-bottom: 2px;
        padding-left: 0;
    }
    
    .hero__logo-compact {
        width: 60px !important;
        height: auto;
        margin-top: -18px;
    }
    
    .hero__badge-compact {
        text-align: center;
        font-size: 8px !important;
        padding: 5px 12px !important;
        margin-bottom: 2px;
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: fit-content;
    }
    
    .hero__heading-compact {
        text-align: center !important;
        font-size: 16px !important;
        line-height: 1.2 !important;
        margin-bottom: 2px !important;
    }
    
    .hero__subtitle-compact {
        text-align: center !important;
        font-size: 10px !important;
        line-height: 1.35 !important;
        margin-bottom: 6px !important;
        opacity: 0.95;
    }
    
    /* Indicadores no mobile */
    .hero .slide-indicators {
        bottom: 20px;
        padding: 10px 16px;
    }
    
    section.hero .container.hero__container .hero__split-layout {
        display: block !important;
        width: 100% !important;
    }
    
    /* Força a ordem: texto em cima, slide embaixo */
    section.hero .container.hero__container .hero__split-layout .hero__info { 
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 35px !important;
    }
    
    section.hero .container.hero__container .hero__split-layout .hero__slideshow { 
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 35px !important;
    }
    
    .hero__visual-container {
        height: 280px;
        border-radius: 16px;
    }
    
    .hero .hero-slide-arrow {
        width: 48px;
        height: 48px;
        border-radius: 10px;
    }
    
    .hero .hero-slide-arrow.hero-prev {
        left: 15px;
    }
    
    .hero .hero-slide-arrow.hero-next {
        right: 15px;
    }
    
    .hero .hero-slide-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .hero__info {
        text-align: center;
        padding: 0;
    }
    
    .hero__badge-logo-wrapper {
        margin-bottom: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero__logo-compact {
        width: 100px;
        margin: 0 auto 12px;
    }
    
    .hero__badge-compact {
        font-size: 11px;
        padding: 8px 18px;
        display: inline-block;
        width: auto;
    }
    
    .hero__heading-compact {
        font-size: 26px;
        margin-bottom: 18px;
        line-height: 1.3;
    }
    
    .hero__heading-compact br {
        display: none;
    }
    
    .hero__subtitle-compact {
        font-size: 14px;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .hero__buttons-compact {
        display: flex;
        flex-direction: column;
        gap: 6px;
        width: 100%;
        align-items: center;
    }
    
    .btn-compact {
        padding: 10px 16px;
        font-size: 10px;
        width: 100%;
        justify-content: space-between;
        border-radius: 8px;
    }
    
    .btn-compact svg {
        width: 14px;
        height: 14px;
    }
    
    .btn-compact:hover {
        transform: none;
    }
    
    /* Content with Image Mobile */
    .content-with-image {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        margin-bottom: 35px !important;
    }
    
    .content-with-image.reverse {
        direction: ltr !important;
    }
    
    .content-image {
        width: 100%;
    }
    
    .content-image img {
        height: 250px;
        width: 100%;
    }
    
    .content-text {
        padding: 0;
        text-align: center;
        width: 100%;
    }
    
    .content-text .feature-icon {
        margin: 0 auto 18px;
    }
    
    .content-text h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .content-text p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Feature Highlight Mobile */
    .feature-highlight {
        margin: 30px 0;
        border-radius: 16px;
    }
    
    .feature-highlight img {
        height: 280px;
    }
    
    /* Success Gallery Mobile */
    .success-gallery {
        grid-template-columns: 1fr !important;
        gap: 20px;
        margin: 30px 0;
    }
    
    .gallery-item {
        border-radius: 12px;
        width: 100%;
    }
    
    .gallery-item img {
        height: 250px;
        width: 100%;
    }
    
    /* Stats Mobile - Cards Compactos - DEPOIS DE TUDO */
    .hero__stats {
        order: 3;
        padding: 24px 18px;
        margin-top: 0;
        gap: 18px;
        flex-direction: column;
        border-radius: 16px;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(25px);
        border-width: 1px;
        box-sizing: border-box;
    }
    
    .stat-item {
        text-align: center;
        width: 100%;
        padding: 10px 0;
    }
    
    .stat-value {
        font-size: 28px;
        margin-bottom: 8px;
        font-weight: 700;
    }
    
    .stat-label {
        font-size: 12px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .stat-divider {
        display: block;
        width: 70%;
        height: 1px;
        background: rgba(255, 255, 255, 0.15);
        margin: 6px auto;
    }
    
    /* Sections Mobile - Espaçamento Reduzido */
    .features,
    .benefits,
    .pricing,
    .faq,
    .cta-section {
        padding: 40px 0;
    }
    
    .features:first-of-type {
        padding-top: 20px;
    }
    
    /* Section Headers Mobile */
    .section-header {
        padding: 20px 15px;
        margin-bottom: 30px;
        border-radius: 16px;
    }
    
    .section__heading {
        font-size: 28px;
        text-align: center;
        line-height: 1.3;
    }
    
    .section__text {
        font-size: 15px;
        text-align: center;
        line-height: 1.6;
    }
    
    /* Features Grid Mobile - Cards Menores */
    .features__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
        border-radius: 16px;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 20px;
    }
    
    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Benefits Mobile - Layout Stack */
    .benefits__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 35px 20px;
        border-radius: 16px;
        text-align: center;
    }
    
    .benefit-number {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .benefit-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .benefit-card p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Slideshow Container Mobile */
    .slideshow-container {
        height: 320px;
    }
    
    .slide-item img {
        max-height: 300px;
    }
    
    .slide-control {
        width: 40px;
        height: 40px;
    }
    
    .slide-control svg {
        width: 20px;
        height: 20px;
    }
    
    .slide-caption {
        font-size: 14px;
        padding: 18px;
    }
    
    /* Pricing Mobile */
    .pricing__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 35px 20px;
    }
    
    .pricing-title {
        font-size: 24px;
    }
    
    .pricing-description {
        font-size: 14px;
    }
    
    /* FAQ Mobile */
    .faq__grid {
        gap: 15px;
    }
    
    .faq-item {
        padding: 25px 18px;
        border-radius: 12px;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
    
    /* CTA Mobile */
    .cta-content {
        padding: 35px 20px;
        border-radius: 16px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer__logo {
        height: 35px;
    }
    
    .footer__brand p {
        font-size: 14px;
        text-align: center;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer__column h4 {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .footer__column a {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .footer__bottom p {
        font-size: 13px;
    }
    
    /* Mobile Menu */
    .mobile-menu__list {
        gap: 25px;
    }
    
    .mobile-menu__item {
        font-size: 16px;
    }
    
    /* Scroll Dots - Hidden on Mobile */
    .scroll-dots {
        display: none;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: #d4af37;
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #f4d03f;
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: #c5a028;
    top: 50%;
    right: 10%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(30px, -30px);
    }
    66% {
        transform: translate(-20px, 20px);
    }
}

.hero__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
}

.hero__split-layout {
    display: grid;
    grid-template-columns: 38% 58%;
    gap: 4%;
    align-items: flex-start;
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    .hero__split-layout {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
    }
}

.hero__info {
    display: flex;
    flex-direction: column;
    padding-right: 20px;
}

.hero__badge-logo-wrapper {
    margin-bottom: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero__logo-compact {
    width: 140px;
    height: auto;
    margin: 0;
}

.hero__badge-compact {
    display: inline-block;
    text-align: center;
    padding: 7px 18px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    color: var(--gold);
    margin-top: -12px;
}

.hero__heading-compact {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 8px;
    text-align: left;
}

.hero__subtitle-compact {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    text-align: left;
}

.hero__buttons-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 28px;
    background: var(--accent-gradient);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 12px;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-compact:hover {
    filter: brightness(1.1);
    border-color: var(--gold);
}

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

.hero__slideshow {
    width: 100%;
    margin-top: 40px;
}

.hero__visual-container {
    width: 100%;
    height: 550px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .hero__slideshow {
        margin-bottom: 80px;
    }

    .hero__visual-container {
        height: 240px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .hero__slideshow {
        margin-bottom: 70px;
    }

    .hero__visual-container {
        height: 200px;
        border-radius: 14px;
    }
}

.hero-slideshow-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out;
}

.hero-slide-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(212, 175, 55, 0.92);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-slide-arrow:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.hero-slide-arrow svg {
    width: 26px;
    height: 26px;
    color: #000000;
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero__logo {
    width: 200px;
    height: auto;
    margin: 0 auto 16px;
    display: block;
    filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.35));
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.hero__badge svg {
    width: 18px;
    height: 18px;
}

.hero__heading {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    color: #ffffff;
}

.hero__heading--main {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
}

.hero__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0;
    flex-wrap: wrap;
    opacity: 1;
    transform: translateY(0);
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: rgba(212, 175, 55, 0.12);
    border: none;
    color: white;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15), transparent);
opacity: 1;
transition: opacity 0.4s ease;
}

.btn-hero-primary:hover {
    background: rgba(212, 175, 55, 0.18);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.3), 0 0 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
    cursor: pointer;
}

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

.btn-hero-primary svg,
.btn-hero-secondary svg {
    width: 20px;
    height: 20px;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.pricing-icon .icon-img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.hero__stats {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    padding: 40px 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    z-index: 150;
}

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

.stat-value {
    font-size: 32px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

#transition {
    height: 8vh;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
}

.section__heading {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(-20px);
}

.heading__special {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section__text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    transform: translateY(-20px);
}

.features {
    padding: 60px 0;
    position: relative;
    background: rgba(10, 10, 10, 0.5);
    z-index: 50;
}

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

.feature-card {
    padding: 40px;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 15px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.05) 2px,
        rgba(255, 255, 255, 0.05) 4px
    );
    animation: shimmer 3s infinite linear;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 50%);
    border-radius: 15px;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1;
    color: #000000;
    stroke: #000000;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
}

.content-with-image.reverse {
    direction: rtl;
}

.content-with-image.reverse > * {
    direction: ltr;
}

.content-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.content-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    border-color: var(--gold);
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.content-text {
    padding: 20px;
}

.content-text .feature-icon {
    margin-bottom: 25px;
}

.content-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.content-text p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.feature-highlight {
    margin: 50px 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.feature-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    pointer-events: none;
    z-index: 1;
}

.feature-highlight img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.feature-highlight:hover img {
    transform: scale(1.05);
}

.training-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.training-image-highlight {
    grid-column: 1 / -1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.4);
    transition: all 0.4s ease;
    margin: 20px 0;
}

.training-image-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    border-color: var(--gold);
}

.training-image-highlight img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.training-image-side {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.training-image-side:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border-color: var(--gold);
}

.training-image-side img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.feature-card-highlight {
    grid-column: 1 / -1;
    background: rgba(212, 175, 55, 0.08) !important;
    border: 2px solid rgba(212, 175, 55, 0.4) !important;
}

@media screen and (max-width: 968px) {
    .training-content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .training-image-highlight {
        grid-column: 1;
        margin: 15px 0;
    }
    
    .training-image-highlight img {
        height: 280px;
    }
    
    .training-image-side img {
        height: 240px;
    }
    
    .feature-card-highlight {
        grid-column: 1;
    }
}

.success-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border-color: var(--gold);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

@media screen and (max-width: 1024px) {
    .header__nav,
    .header__actions {
        display: none;
    }
    
    .header__btn-toggle {
        display: flex;
    }
    
    .header {
        height: 70px;
    }
    
    .header .container {
        padding: 0 20px;
    }
    
    .header__logo img {
        height: 35px;
    }
}

.benefits {
    padding: 60px 0;
    position: relative;
    z-index: 50;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    padding: 50px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    transition: all 0.4s ease;
}

.benefit-number {
    display: inline-block;
    font-size: 48px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1;
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.pricing {
    padding: 60px 0;
    position: relative;
    background: rgba(10, 10, 10, 0.5);
    z-index: 50;
}

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

.pricing-card {
    position: relative;
    padding: 50px;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.4s ease;
}

.pricing-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px) scale(1);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

.pricing-card.featured {
    border-color: var(--gold);
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(15px);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--accent-gradient);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 15px;
    margin: 0 auto 20px;
}

.pricing-icon svg {
    width: 30px;
    height: 30px;
}

.pricing-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.pricing-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-value {
    margin: 30px 0;
    text-align: center;
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.price-old {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    margin-bottom: 10px;
}

.price-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

.amount {
    font-size: 56px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

.price-savings {
    font-size: 14px;
    color: var(--success);
    font-weight: 500;
    margin-top: 10px;
}

.price-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-color);
}

.pricing-features li.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-pricing {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: rgba(212, 175, 55, 0.12);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.btn-pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15), transparent);
    opacity: 1;
    transition: opacity 0.4s ease;
}

.btn-pricing:hover {
    background: rgba(212, 175, 55, 0.18);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.3), 0 0 18px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.btn-pricing svg {
    width: 20px;
    height: 20px;
}

.pricing-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-footer svg {
    width: 16px;
    height: 16px;
}

.faq {
    padding: 60px 0;
    position: relative;
    background: rgba(10, 10, 10, 0.5);
    z-index: 50;
}

.faq__grid {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 30px;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.faq-answer {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.cta-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background: rgba(10, 10, 10, 0.5);
    z-index: 50;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 60;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    padding: 50px;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
}

.cta-content .section__heading {
    margin-bottom: 20px;
}

.cta-content .section__text {
    margin-bottom: 40px;
}

.cta-content .btn-hero-primary {
    display: inline-flex;
}

.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-modal.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    position: relative;
    max-width: 550px;
    width: 90%;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;
    padding: 60px 50px 50px;
    text-align: center;
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.9);
    animation: popupSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.popup-close svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.popup-logo {
    width: 140px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
}

.popup-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
    color: white;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.popup-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 35px;
}

.popup-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 35px 0;
    padding: 25px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.popup-highlight-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.popup-highlight-item strong {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.popup-highlight-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.popup-cta-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 30px 0 25px;
    font-weight: 500;
}

.popup-button {
    display: block;
    width: 100%;
    padding: 18px 40px;
    background: var(--accent-gradient);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.popup-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
    filter: brightness(1.1);
}

.popup-footer-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
    font-style: italic;
}

@media screen and (max-width: 768px) {
    .popup-content {
        padding: 50px 35px 40px;
    }
    
    .popup-logo {
        width: 120px;
        margin-bottom: 25px;
    }
    
    .popup-content h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .popup-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .popup-highlights {
        gap: 15px;
        margin: 30px 0;
        padding: 20px 0;
    }
    
    .popup-highlight-item strong {
        font-size: 18px;
    }
    
    .popup-highlight-item span {
        font-size: 11px;
    }
    
    .popup-cta-text {
        font-size: 14px;
        margin: 25px 0 20px;
    }
    
    .popup-button {
        padding: 16px 32px;
        font-size: 15px;
    }
    
    .popup-footer-text {
        font-size: 12px;
        margin-top: 15px;
    }
}

.footer {
    padding: 80px 0 30px;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer__brand {
    max-width: 350px;
}

.footer__logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer__brand p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    margin-bottom: 25px;
}

.footer__brand .social-icons {
    justify-content: flex-start;
    margin-top: 20px;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer__column h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer__column a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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


.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: rgba(212, 175, 55, 0.9);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent-gradient);
    border-color: var(--gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.social-icons a svg {
    width: 20px;
    height: 20px;
}

.footer__bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.footer__bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 1200px) {
    .benefits__grid {
        gap: 30px;
    }
}

@media screen and (max-width: 968px) {
    .benefits__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero__heading-compact {
        font-size: 32px;
    }
    
    .hero__subtitle-compact {
        font-size: 17px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 18px;
    }
    
    .hero {
        padding: 80px 0 50px;
    }
    
    .hero__container {
        padding: 0 18px;
    }
    
    .hero__slideshow {
        margin-bottom: 70px;
    }
    
    .hero__visual-container {
        height: 200px;
        border-radius: 14px;
    }
    
    .hero-slide-arrow {
        width: 40px;
        height: 40px;
    }
    
    .hero-slide-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .hero__logo-compact {
        width: 100px;
    }
    
    .hero__badge-compact {
        font-size: 11px;
        padding: 9px 18px;
    }
    
    .hero__heading-compact {
        font-size: 24px;
        margin-bottom: 18px;
    }
    
    .hero__subtitle-compact {
        font-size: 14px;
        margin-bottom: 28px;
    }
    
    .btn-compact {
        padding: 16px 24px;
        font-size: 13px;
    }
    
    /* Content Images Extra Small */
    .content-image img {
        height: 240px;
    }
    
    .content-text h3 {
        font-size: 20px;
    }
    
    .content-text p {
        font-size: 14px;
    }
    
    .feature-highlight img {
        height: 220px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    /* Stats - Mobile Extra Pequeno */
    .hero__stats {
        order: 3;
        padding: 25px 18px;
        gap: 18px;
        margin-top: 40px;
        width: calc(100% - 16px);
        margin-left: 8px;
        margin-right: 8px;
        border-radius: 16px;
    }
    
    .stat-item {
        padding: 10px 0;
    }
    
    .stat-value {
        font-size: 26px;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .section-header {
        padding: 20px 12px;
        margin-bottom: 30px;
    }
    
    .section__heading {
        font-size: 24px;
    }
    
    .section__text {
        font-size: 14px;
    }
    
    .features,
    .benefits {
        padding: 40px 0;
    }
    
    .feature-card,
    .benefit-card {
        padding: 25px 18px;
    }
    
    .feature-card h3,
    .benefit-card h3 {
        font-size: 18px;
    }
    
    .feature-card p,
    .benefit-card p {
        font-size: 13px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .logo-container {
        top: 10%;
    }
    
    .logo-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero__content {
        margin-top: 200px;
    }
    
    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    /* Partnership Section Mobile */
    .partnership-section {
        padding: 40px 0 !important;
    }
    
    .partnership-section .container {
        padding: 0 20px !important;
    }
    
    .partnership-section .partnership-title {
        font-size: 1.6rem !important;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem !important;
        line-height: 1.3;
    }
    
    .partnership-content {
        padding: 0 !important;
        max-width: 100% !important;
    }
    
    .partnership-grid {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .partnership-card {
        min-width: 100% !important;
        padding: 1.5rem 1rem !important;
        margin: 0 !important;
    }
    
    .partnership-card h3 {
        font-size: 1.1rem !important;
    }
    
    .partnership-card p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
    
    .partnership-section .stats-card {
        min-width: 150px !important;
        padding: 1rem !important;
    }
    
    .partnership-section .stats-card h4 {
        font-size: 1.2rem !important;
    }
    
    .partnership-section .stats-card p {
        font-size: 0.85rem !important;
    }
    
    /* História Section Mobile */
    #nossa-historia {
        padding: 40px 0 !important;
    }
    
    #nossa-historia .container {
        padding: 0 20px !important;
    }
    
    #nossa-historia .section__heading {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }
    
    #nossa-historia .section__text {
        font-size: 0.95rem !important;
    }
    
    #nossa-historia > .container > div {
        padding: 2rem 1rem !important;
        margin: 0 !important;
    }
    
    #nossa-historia h3 {
        font-size: 2rem !important;
    }
    
    #nossa-historia h4 {
        font-size: 1.2rem !important;
    }
    
    #nossa-historia p {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
    }
    
    /* Stats Section Mobile */
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-section .container > div {
        overflow-x: scroll;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        display: flex !important;
        gap: 1.5rem !important;
        padding: 2rem 5% 2rem 5% !important;
        flex-wrap: nowrap !important;
        border: none !important;
        justify-content: flex-start !important;
    }
    
    .stats-section .container > div::-webkit-scrollbar {
        display: none;
    }
    
    /* Esconder as setas no mobile */
    .stats-arrow {
        display: none !important;
    }
    
    /* Estilizar apenas os cards de conteúdo */
    .stats-card {
        scroll-snap-align: start;
        scroll-snap-stop: always;
        flex: 0 0 90% !important;
        min-width: 90% !important;
        max-width: 90% !important;
        padding: 2rem 1.5rem !important;
        border: 2px solid #d4af37 !important;
        border-radius: 30px !important;
        background: rgba(0, 0, 0, 0.5) !important;
        position: relative;
    }
    
    /* Adicionar seta ilustrativa no lado direito do card */
    .stats-card::after {
        content: '';
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23d4af37" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14m-7-7 7 7-7 7"/></svg>');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.8;
    }
    
    .stats-card:last-child::after {
        display: none;
    }
    
    .stats-wrapper {
        flex-direction: row;
        gap: 12px;
        padding: 24px 16px;
        border-radius: 16px;
    }
    
    .hero__stats {
        gap: 20px;
        padding: 30px 20px;
        opacity: 1 !important;
        transform: translateY(0) !important;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .stat-item {
        flex: 1 1 auto;
        min-width: 100px;
    }
    
    .stat-value {
        font-size: 28px;
        margin-bottom: 4px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .return-btn {
        right: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
    
    .features,
    .benefits,
    .pricing,
    .faq,
    .cta-section {
        padding: 80px 0;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Dropdown Styles */
.dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.dropdown-trigger.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 250px;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.dropdown-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.dropdown-item span {
    font-size: 15px;
    font-weight: 500;
}

/* Hero Dropdown Specific Styles */
.hero-dropdown {
    display: inline-block;
}

.hero-dropdown .btn-hero-primary {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-dropdown-menu {
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
}

.hero-dropdown-menu.active {
    transform: translateX(-50%) translateY(0);
}

/* Mobile Dropdown Adjustments */
@media screen and (max-width: 768px) {
    .dropdown-menu {
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        min-width: 220px;
    }
    
    .dropdown-menu.active {
        transform: translateX(-50%) translateY(0);
    }
    
    .dropdown-item {
        padding: 10px 14px;
        gap: 10px;
    }
    
    .dropdown-item svg {
        width: 18px;
        height: 18px;
    }
    
    .dropdown-item span {
        font-size: 14px;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

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

.modal-content {
    background: #000000;
    width: 100%;
    max-width: 1000px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s ease-out;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-icon {
    width: 2rem;
    height: 2rem;
    color: #d4af37;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.4));
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.modal-close:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.modal-close svg {
    width: 1.5rem;
    height: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.training-card {
    background: #3a3a3a;
    padding: 1.25rem;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.training-card:hover {
    background: #454545;
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.training-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.training-card-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    object-fit: contain;
}

.training-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.training-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.training-card-list li {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.9rem;
    line-height: 1.5;
    padding-left: 1.5rem;
    position: relative;
}

.training-card-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* Training Hero Section */
.training-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(20, 20, 20, 0.95) 100%);
    position: relative;
    overflow: hidden;
}


.training-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.training-hero-image {
    width: 100%;
    max-width: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.training-hero-image img {
    width: 100%;
    height: auto;
    max-height: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    object-fit: cover;
}

.training-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

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

.training-hero-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    text-transform: uppercase;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1.2;
}

.training-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
}

.training-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    background: var(--accent-gradient);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.05em;
    position: relative;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.training-hero-btn span {
    color: #000000;
    font-weight: 700;
}

.training-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    filter: brightness(1.1);
}

.training-hero-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}

.training-hero-btn:hover svg {
    transform: scale(1.1);
}

/* Responsive Modal */
@media screen and (max-width: 768px) {
    .modal-overlay {
        padding: 0.5rem;
    }
    
    .modal-content {
        max-width: 100%;
        border-radius: 16px;
        max-height: 95vh;
        overflow-y: auto;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-title {
        font-size: 1.4rem;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
    }
    
    .modal-body {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .training-card {
        padding: 1rem;
    }
    
    .training-card-header {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .training-card-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .training-card-title {
        font-size: 1rem;
    }
    
    .training-card-list {
        gap: 0.4rem;
    }
    
    .training-card-list li {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .training-hero {
        padding: 60px 0;
    }
    
    .training-hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .training-hero-image img {
        max-height: 300px;
        object-fit: cover;
    }
    
    .training-hero-content {
        text-align: center;
    }
    
    .training-hero-title {
        font-size: 2rem;
    }
    
    .training-hero-subtitle {
        font-size: 1rem;
    }
    
    .training-hero-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Mobile muito pequeno - cards em coluna única */
@media screen and (max-width: 600px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
}
