/*
Theme Name: JH7 Marketing Theme
Description: Tema personalizado para JH7 Marketing - Landing Page responsiva com design moderno
Version: 1.12
Author: JH7 Marketing
*/

/* Custom CSS for JH7 Marketing Landing Page */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reduzir animações em dispositivos com preferência por movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Otimizações para dispositivos móveis */
@media (max-width: 768px) {
    /* Reduzir animações complexas em mobile */
    .hero-image {
        height: auto;
        padding: 20px 10px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }
    
    .floating-card {
        position: relative;
        animation: none;
        margin: 0 auto;
        max-width: 280px;
        width: 100%;
        padding: 20px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .floating-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }
    
    .floating-card i {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .floating-card span {
        font-size: 1.1rem;
        font-weight: 600;
        text-align: center;
    }
    
    .card-1, .card-2, .card-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    
    .animated-text {
        animation: none;
    }
    
    .scroll-arrow {
        animation-duration: 3s;
    }
    
    /* Melhorar performance de scroll */
    .hero-section,
    .packages-section,
    .about-section {
        will-change: auto;
    }
}

html {
    scroll-behavior: smooth;
}

/* Logo Styles */
.logo-svg {
    height: 60px;
    width: auto;
    max-width: 240px;
    transition: all 0.3s ease;
}

.logo-svg:hover {
    transform: scale(1.05);
}

.navbar-brand {
    padding: 0.5rem 0;
    margin-right: 1rem;
}

/* Responsive logo - Aumentado para mobile */
@media (max-width: 768px) {
    .logo-svg {
        height: 65px;
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .logo-svg {
        height: 58px;
        max-width: 232px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b35 0%, #4caf50 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #4caf50 0%, #ff6b35 100%);
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, #ff6b35 0%, #4caf50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35 0%, #4caf50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 0.3rem 0;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 0.2rem 0;
}

.navbar-brand {
    text-decoration: none;
}

.navbar-brand:hover {
    text-decoration: none;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.2rem 0.8rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6b35 !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(135deg, #ff6b35 0%, #4caf50 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
    padding-top: 120px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.animated-text {
    background: linear-gradient(135deg, #ff6b35 0%, #4caf50 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    animation: pulse 2s infinite;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn {
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #4caf50 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #0a0a0a;
    transform: translateY(-3px);
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    background: linear-gradient(135deg, #ff6b35 0%, #4caf50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid #ffffff;
    border-radius: 25px;
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes scrollDot {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(15px); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* About Section */
.about-section {
    background: #111111;
    position: relative;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #4caf50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Packages Section */
.packages-section {
    background: #0a0a0a;
    position: relative;
}

.packages-section .row.g-4 {
    margin-top: 65px;
}

.urgency-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    animation: urgencyPulse 2s infinite;
}

@keyframes urgencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card.featured {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    transform: scale(1.05);
}

.package-card.premium {
    border-color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-card.premium .package-badge {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.package-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.old-price {
    color: #999999;
    text-decoration: line-through;
    font-size: 1rem;
}

.current-price {
    color: #ff6b35;
    font-size: 2rem;
    font-weight: 700;
}

.package-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.package-features ul {
    list-style: none;
    padding: 0;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

.package-features li i {
    color: #4caf50;
    font-size: 1.1rem;
}

.package-btn {
    margin-top: auto;
}

.package-note {
    text-align: center;
    color: #999999;
    font-size: 0.8rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

.guarantee-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.guarantee-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.guarantee-section p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background: #111111;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-content p {
    color: #cccccc;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #4caf50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h5 {
    color: #ffffff;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.author-info span {
    color: #999999;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.accordion {
    --bs-accordion-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    --bs-accordion-border-color: rgba(255, 107, 53, 0.2);
    --bs-accordion-btn-color: #ffffff;
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-btn-focus-border-color: rgba(255, 107, 53, 0.6);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.3);
    --bs-accordion-body-color: #e0e0e0;
    --bs-accordion-active-color: #ffffff;
    --bs-accordion-active-bg: linear-gradient(145deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.08));
    position: relative;
    z-index: 1;
}

.accordion-item {
    border-radius: 12px !important;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(255, 107, 53, 0.2) !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.accordion-item:hover {
    border-color: rgba(255, 107, 53, 0.4) !important;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.accordion-button {
    border-radius: 12px !important;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.accordion-button:hover::before {
    left: 100%;
}

.accordion-button:hover {
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05)) !important;
    color: #ffffff !important;
    transform: translateX(5px);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1)) !important;
    border-color: rgba(255, 107, 53, 0.4) !important;
    color: #ffffff !important;
    box-shadow: inset 0 2px 10px rgba(255, 107, 53, 0.1);
}

.accordion-body {
    line-height: 1.7;
    color: #e0e0e0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 0 0 12px 12px;
    padding: 1.5rem;
}

/* Contact Section */
.contact-section {
    background: #111111;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand .logo-text {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
    position: relative;
    display: inline-block;
}

.logo-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 0;
}

.logo-dots .dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: inline-block;
    animation: dotWave 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

.logo-dots .dot:nth-child(1) {
    animation-delay: 0s;
}

.logo-dots .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.logo-dots .dot:nth-child(3) {
    animation-delay: 0.4s;
}

.logo-dots .dot:nth-child(4) {
    animation-delay: 0.6s;
}

.logo-dots .dot:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes dotWave {
    0%, 60%, 100% {
        transform: scale(1) translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: scale(1.3) translateY(-4px);
        opacity: 1;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.6);
    }
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.footer-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 0.2rem 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-contact .contact-item:hover {
    transform: translateX(5px);
}

.footer-contact .contact-item i {
    color: #ff6b35;
    font-size: 1.1rem;
    width: 20px;
    margin-right: 0.8rem;
}

.footer-contact .contact-item a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact .contact-item a:hover {
    color: #ff6b35;
}

.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    margin: 2.5rem 0 2rem 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border-color: #ff6b35;
}

.footer-bottom {
    text-align: right;
    margin-right: 20px;
}

.copyright {
    color: #999999;
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
}

.legal-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #ff6b35;
}

.separator {
    color: #666666;
    font-size: 0.8rem;
}

.btn-instagram {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcb045);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.3);
    color: white;
}

/* Botão Voltar ao Topo */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #4caf50 100%);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.scroll-to-top a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.scroll-to-top i {
    font-size: 18px;
    color: white;
}

/* Modal Styles */
.modal-content {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    color: #ffffff;
}

.btn-close {
    filter: invert(1);
}

.form-label {
    color: #ffffff;
    font-weight: 600;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    padding: 0.8rem 1rem;
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
    color: #ffffff;
}

.form-control::placeholder {
    color: #999999;
}

.form-select option {
    background: #1a1a1a;
    color: #ffffff;
}

/* Form Styles */
.form-select:disabled {
    background-color: #2a2a2a !important;
    border-color: #444444 !important;
    color: #cccccc !important;
    opacity: 0.8;
}

.form-select:disabled option {
    background-color: #2a2a2a;
    color: #cccccc;
}

/* Custom Checkbox */
.custom-checkbox {
    position: relative;
    padding-left: 2rem;
    display: flex;
    align-items: center;
}

.custom-checkbox .form-check-input {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    background-color: #2a2a2a;
    border: 2px solid #444444;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    margin: 0;
}

.custom-checkbox .form-check-input:checked {
    background-color: #ff6b35;
    border-color: #ff6b35;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.custom-checkbox .form-check-input:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

.custom-checkbox .form-check-label {
    color: #cccccc;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.custom-checkbox .form-check-label:hover {
    color: #ffffff;
}

.custom-checkbox .form-check-label i {
    color: #ff6b35;
    font-size: 1rem;
}

/* Footer Contact Form */
.footer-contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.footer-contact-form:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.footer-contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00d4ff;
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25);
    color: #fff;
}

.footer-contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-form .form-control.is-valid {
    border-color: #28a745;
    background-image: none;
}

.footer-contact-form .form-control.is-invalid {
    border-color: #dc3545;
    background-image: none;
}

.footer-contact-form .form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-form .form-check-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    width: 18px;
    height: 18px;
    margin: 0;
    transition: all 0.3s ease;
}

.footer-contact-form .form-check-input:checked {
    background: linear-gradient(135deg, #ff6b35, #4caf50);
    border-color: #ff6b35;
}

.footer-contact-form .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.footer-contact-form .form-check-input.is-invalid {
    border-color: #dc3545;
}

.footer-contact-form .form-check-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}

.footer-contact-form .btn-primary {
    background: linear-gradient(135deg, #ff6b35, #4caf50);
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-contact-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-contact-form .btn-primary:hover::before {
    left: 100%;
}

.footer-contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #4caf50, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.footer-contact-form .btn-primary:active {
    transform: translateY(0);
}

.footer-contact-form .btn-primary:disabled {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.footer-contact-form .alert {
    border-radius: 10px;
    border: none;
    font-size: 14px;
    padding: 12px 15px;
    margin-top: 15px;
}

.footer-contact-form .alert-success {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.footer-contact-form .alert-danger {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.footer-contact-form .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.footer-contact-form .btn-close:hover {
    opacity: 1;
}

/* Animações para o formulário */
@keyframes formSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-contact-form {
    animation: formSlideIn 0.6s ease-out;
}

.footer-contact-form .form-group {
    animation: formSlideIn 0.6s ease-out;
    animation-fill-mode: both;
}

.footer-contact-form .form-group:nth-child(1) { animation-delay: 0.1s; }
.footer-contact-form .form-group:nth-child(2) { animation-delay: 0.2s; }
.footer-contact-form .form-group:nth-child(3) { animation-delay: 0.3s; }
.footer-contact-form .form-group:nth-child(4) { animation-delay: 0.4s; }
.footer-contact-form .btn-primary { animation-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .hero-buttons {
        align-items: center;
        text-align: center;
    }
    
    /* Footer Mobile Fixes */
    .footer {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-height: auto;
        padding: 40px 0;
    }
    
    .footer .container {
        padding: 0 15px;
    }
    
    .footer .row {
        margin: 0;
    }
    
    .footer .col-lg-6 {
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .footer-social {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .footer-links {
        text-align: center;
    }

    .footer-links li:hover {
        transform: translateX(0);
    }

    .footer-contact .contact-item:hover {
        transform: translateX(0);
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-brand .logo-text {
        font-size: 1.5rem;
        text-align: center;
    }

    .logo-dots {
        gap: 6px;
        margin-top: 6px;
    }

    .logo-dots .dot {
        width: 6px;
        height: 6px;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Footer Contact Form - Mobile */
    .footer-contact-form {
        padding: 20px;
        margin-top: 20px;
    }
    
    .footer-contact-form .form-control {
        padding: 10px 12px;
        font-size: 16px; /* Evita zoom no iOS */
    }
    
    .footer-contact-form .btn-primary {
        padding: 14px 20px;
        font-size: 16px;
    }
    
    .footer-contact-form .form-check-label {
        font-size: 13px;
    }
    
    .footer-contact-form .alert {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .package-card {
        margin-bottom: 2rem;
    }
    
    .animated-text {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}