/* ============================================
   VARIÁVEIS DE COR
   ============================================ */
:root {
    --primary-blue: #2C86FF;
    --dark-blue: #0A1E3F;
    --light-gray: #F2F4F7;
    --medium-gray: #A8AEB8;
    --gold-accent: #F2B705;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --success: #28a745;
    --danger: #dc3545;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark-blue);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--gold-accent));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.section-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   NAVEGAÇÃO
   ============================================ */
.navbar {
    background-color: var(--white) !important;
    border-bottom: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.navbar-animated {
    animation: slideDown 0.5s ease;
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--dark-blue) !important;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 1.2rem;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text-dark) !important;
    margin-left: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.nav-link:hover {
    color: var(--primary-blue) !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(10, 30, 63, 0.5), rgba(10, 30, 63, 0.5)), 
                url('assets/img/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 134, 255, 0.1) 0%, rgba(10, 30, 63, 0.3) 100%);
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.stars::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
    top: 20%;
    left: 10%;
    opacity: 0.6;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(44, 134, 255, 0.2);
    border: 1px solid rgba(44, 134, 255, 0.5);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-animation {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    color: var(--white);
    text-align: center;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.floating-card i {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.floating-card span {
    font-weight: 600;
    display: block;
}

.card-1 {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.card-2 {
    top: 250px;
    right: 100px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 100px;
    left: 150px;
    animation-delay: 2s;
}

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

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

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e5fa8;
    border-color: #1e5fa8;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(44, 134, 255, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-hover-lift {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(44, 134, 255, 0.25);
}

/* ============================================
   SEÇÃO SOBRE
   ============================================ */
.bg-light {
    background-color: var(--light-gray) !important;
}

.image-gallery {
    position: relative;
    height: 400px;
    margin-bottom: 2rem;
}

.main-image {
    position: absolute;
    width: 80%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
    animation: slideInLeft 0.8s ease;
}

.secondary-image {
    position: absolute;
    width: 60%;
    height: 70%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    bottom: 0;
    right: 0;
    z-index: 1;
    animation: slideInRight 0.8s ease 0.2s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.img-fluid {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(44, 134, 255, 0.05);
}

.feature-item:hover {
    background: rgba(44, 134, 255, 0.1);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.feature-item h5 {
    margin-bottom: 0.25rem;
    color: var(--dark-blue);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.counter {
    display: inline-block;
}

/* ============================================
   CARDS DE BENEFÍCIOS
   ============================================ */
.benefit-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 1px solid rgba(44, 134, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.benefit-card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(44, 134, 255, 0.15);
    border-color: var(--primary-blue);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   CARDS DE DEPOIMENTOS
   ============================================ */
.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold-accent);
    position: relative;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 4rem;
    color: var(--gold-accent);
    opacity: 0.1;
    font-family: 'Montserrat', sans-serif;
}

.testimonial-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-left-color: var(--primary-blue);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
}

.testimonial-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--dark-blue);
    margin: 0;
}

.testimonial-role {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-stars {
    color: var(--gold-accent);
    font-size: 0.9rem;
}

/* ============================================
   SEÇÃO DE PREÇO
   ============================================ */
.pricing-card {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-blue), var(--gold-accent));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.pricing-card-featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(44, 134, 255, 0.2);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.pricing-value {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.currency {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Montserrat', sans-serif;
}

.period {
    font-size: 1.2rem;
    color: var(--text-light);
}

.pricing-features {
    margin: 2rem 0;
}

.pricing-features p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.pricing-features p:hover {
    transform: translateX(5px);
    color: var(--primary-blue);
}

.pricing-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ============================================
   SEÇÃO DO PROFISSIONAL
   ============================================ */
.professional-image-wrapper {
    position: relative;
    display: inline-block;
}

.professional-photo {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.professional-image-wrapper:hover .professional-photo {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(44, 134, 255, 0.3);
}

.professional-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(44, 134, 255, 0.1);
    transform: translateY(-5px);
}

.stat-item h5 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   FORMULÁRIO DE CONTATO
   ============================================ */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control-animated {
    background: rgba(44, 134, 255, 0.02);
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(44, 134, 255, 0.25);
    background: var(--white);
}

.form-control::placeholder {
    color: var(--medium-gray);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background-color: var(--dark-blue) !important;
    margin-top: 5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.social-links a {
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-link-hover:hover {
    color: var(--primary-blue) !important;
    transform: translateY(-3px) scale(1.2);
}

/* ============================================
   MODAL
   ============================================ */
.modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

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

.modal-header {
    border-bottom: 1px solid var(--light-gray);
    background-color: var(--light-gray);
}

.modal-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark-blue);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

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

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

    .hero-buttons .btn {
        width: 100%;
    }

    .nav-link {
        margin-left: 0;
        padding: 0.5rem 0;
    }

    .navbar-collapse {
        margin-top: 1rem;
    }

    .pricing-value {
        padding: 1.5rem 0;
    }

    .amount {
        font-size: 2.5rem;
    }

    .image-gallery {
        height: 300px;
    }

    .secondary-image {
        width: 50%;
        height: 60%;
    }

    .hero-animation {
        display: none;
    }

    .professional-stats {
        gap: 1rem;
    }

    .stat-item {
        min-width: 100px;
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

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

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

    .benefit-card {
        padding: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .professional-photo {
        width: 200px;
        height: 200px;
    }
}

/* ============================================
   UTILITÁRIOS
   ============================================ */
.rounded-lg {
    border-radius: 12px;
}

.shadow {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.text-muted {
    color: var(--medium-gray) !important;
}

.alert {
    border-radius: 8px;
    border: none;
    animation: slideDown 0.3s ease;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success);
    border-left: 4px solid var(--success);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--danger);
    border-left: 4px solid var(--danger);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-aos] {
    opacity: 0;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* ============================================
   SMOOTH TRANSITIONS
   ============================================ */
* {
    transition: background-color 0.3s ease, color 0.3s ease;
}

button, a {
    transition: all 0.3s ease;
}
