/* ===========================
   PERTENZA - ESTILOS PRINCIPAIS
   =========================== */

/* Variáveis CSS Customizadas */
:root {
    --primary-color: #412968;
    --primary-dark: #312052;
    --secondary-color: #ffffff;
    --accent-color: #ef4444;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-light: #e2e8f0;
    --navbar-height: 80px;
}

/* Reset e Configurações Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Baloo Chettan 2", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    scroll-behavior: smooth;
    overflow-x: hidden;
    padding-top: var(--navbar-height);
}

/* ===========================
   NAVBAR / NAVEGAÇÃO
   =========================== */

.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    padding: 1rem 0;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1050;
    min-height: var(--navbar-height);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark) !important;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    margin-right: 0.5rem;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

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

.btn-primary-custom {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(65, 41, 104, 0.2);
    white-space: nowrap;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(65, 41, 104, 0.3);
    color: white;
    text-decoration: none;
}

/* Navbar Social Media Icons */
.navbar-social {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-social-link {
    color: var(--primary-color) !important;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.navbar-social-link:hover {
    color: var(--primary-color) !important;
    background: rgba(65, 41, 104, 0.1);
    transform: translateY(-2px);
}

/* ===========================
   HERO SECTION
   =========================== */

.hero-section {
    background-color: var(--primary-color);
    background: url('../img/full_banner.webp')
                no-repeat center center;
    background-size: cover;
    min-height: calc(100vh - var(--navbar-height));
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Hero Section - Tablet Adjustment */
@media (max-width: 1024px) and (min-width: 768px) {
    .hero-content {
        padding-left: 3rem;
    }
}

/* Hero Section - Mobile Banner */
@media (max-width: 767.99px) {
    .hero-section {
        background-color: var(--primary-color);
        background: url('../img/full_banner_mobile.webp')
                    no-repeat center center;
        background-size: cover;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: right;
    padding: 2rem 0;
    /*padding-left: 5rem;*/
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-btn {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
    text-decoration: none;
}

.justify-content-center {
    justify-content: right !important;
}

@media (min-width: 992px) {
    .justify-content-right {
        justify-content: flex-end !important;
    }
}

/* ===========================
   STATS SECTION
   =========================== */

.stats-section {
    padding: 4rem 0;
    background: white;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--secondary-color);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

/* ===========================
   SERVICES SECTION
   =========================== */

.services-section {
    padding: 1rem 0;
    background: #f8f9fa;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.services-grid .row + .row {
    margin-top: 0rem !important;
}

/* ===========================
   TARGET AUDIENCE SECTION
   =========================== */

.target-section {
    padding: 5rem 0;
    background: white;
}

.audience-card {
    background: linear-gradient(135deg, #f8fafc, white);
    padding: 1rem 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.audience-card h3 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.audience-card ul {
    list-style: none;
    padding: 0;
}

.audience-card li {
    margin-bottom: 1rem;
    color: var(--text-light);
    padding-left: 2rem;
    position: relative;
}

.audience-card li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    background: rgba(65, 41, 104, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* ===========================
   HOW IT WORKS SECTION
   =========================== */

.how-it-works {
    padding: 5rem 0;
    background: #f8f9fa;
}

.process-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.process-number {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* ===========================
   BANNER LP SECTION
   =========================== */

.banner-lp-section {
    background: #FFC0CB;
}

.banner-lp-section .container-70 {
    overflow: hidden;
}

.banner-lp-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 1rem;
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */

.testimonials-section {
    padding: 5rem 0;
    background: white;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-family: "Baloo Chettan 2", sans-serif;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===========================
   URGENT DATES SECTION
   =========================== */

.urgent-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    position: relative;
}

.urgent-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

/* Campaign Color Variables */
.campaign-outubro-rosa {
    --campaign-primary: #e91e63;
    --campaign-secondary: #fce4ec;
    --campaign-border: #e91e63;
}

.campaign-novembro-azul {
    --campaign-primary: #007acc;
    --campaign-secondary: #b3d9ff;
    --campaign-border: #007acc;
}

.campaign-black-friday {
    --campaign-primary: #000000;
    --campaign-secondary: #ff6b35;
    --campaign-border: #000000;
}

.campaign-natal {
    --campaign-primary: #c41e3a;
    --campaign-secondary: #ffd700;
    --campaign-border: #c41e3a;
}

.campaign-ano-novo {
    --campaign-primary: #ffd700;
    --campaign-secondary: #4a00e0;
    --campaign-border: #ffd700;
}

.urgent-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(65, 41, 104, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.urgent-card.campaign-themed {
    border-left: 4px solid var(--campaign-border);
    background: linear-gradient(135deg, var(--campaign-secondary)08, white);
}

.urgent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(65, 41, 104, 0.2);
}

.urgent-card.campaign-themed:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.urgent-card h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.urgent-card.campaign-themed h3 {
    color: var(--campaign-primary);
}

.urgent-card.campaign-themed .bi {
    color: var(--campaign-primary);
    transition: transform 0.2s ease;
}

.urgent-card:hover .bi {
    transform: scale(1.1);
}

.urgent-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* ===========================
   CONTACT FORM SECTION
   =========================== */

.contact-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1a1f71, #2d3561);
    color: white;
}

.form-container {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    color: var(--text-dark);
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.form-control {
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(65, 41, 104, 0.1);
    background: white;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    width: 100%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(65, 41, 104, 0.3);
    cursor: pointer;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(65, 41, 104, 0.4);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success Alert */
.success-alert {
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: none;
    animation: slideDown 0.3s ease;
}

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

/* ===========================
   ABOUT SECTION
   =========================== */

.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc, white);
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.tagline {
    color: var(--primary-color);
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 600;
}

/* ===========================
   FOOTER
   =========================== */

.footer-section {
    background: #1a1a1a;
    color: #999999;
    padding: 0rem 0 1rem;
}

.footer-column h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-column a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333333;
    margin-top: 2rem;
    padding-top: 2rem;
    color: #666666;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social a {
    color: #999999;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    color: white;
    transform: translateY(-2px);
}

/* ===========================
   SECTION HEADERS
   =========================== */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   UTILITIES
   =========================== */

/* Container 70% */
.container-70 {
    width: 70%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* ===========================
   CONTAINER 75% - HERO SECTION
   Container exclusivo para hero-section com 75% de largura
   IMPORTANTE: NAO USAR EM OUTRAS SECOES DO SITE
   =========================== */
.container-75-hero-section {
    width: 74%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Container 95% */
.container-95 {
    width: 98%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5px;
    padding-right: 5px;
}

/* Custom column for 5 equal columns */
.col-xl-5th {
    flex: 0 0 auto;
    width: 20%;
}

/* ===========================
   ANIMATIONS
   =========================== */

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

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Responsive design for 5 campaigns */
@media (max-width: 1199.9px) {
    .col-xl-5th {
        width: 50%;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.9px) {
    .col-xl-5th {
        width: 100%;
        margin-bottom: 0rem;
    }

    .urgent-card {
        padding: 1.5rem;
    }

    .urgent-card h3 {
        font-size: 1.1rem;
    }

    .urgent-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Responsive Adjustments */
@media (min-width: 992px) and (max-width: 1033px) {
    .navbar-nav .nav-link {
        margin: 0 0.3rem;
        font-size: 0.95rem;
    }

    .btn-primary-custom {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    .navbar-social {
        margin-left: 0.5rem !important;
    }

    .navbar-social-link {
        width: 28px;
        height: 28px;
        font-size: 1.2rem;
    }
}

@media (max-width: 991.9px) {
    .navbar-collapse {
        background: white;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .navbar-nav {
        text-align: center;
    }

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

    .btn-primary-custom {
        width: 100%;
        margin-top: 1rem;
        margin-left: 0 !important;
    }

    .navbar-social {
        justify-content: center;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-light);
        margin-left: 0 !important;
    }
}

@media (max-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .container-70 {
        width: 80%;
    }

    /* Container hero-section - Ajuste desktop medio */
    .container-75-hero-section {
        width: 85%;
    }
}

@media (max-width: 992px) {
    body {
        padding-top: 70px;
    }

    .navbar-custom {
        min-height: 70px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .form-container {
        padding: 2.5rem 3rem;
    }

    .container-70 {
        width: 85%;
    }

    /* Container hero-section - Ajuste tablet */
    .container-75-hero-section {
        width: 90%;
    }

    .section-header {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .navbar-custom {
        min-height: 60px;
        padding: 0.8rem 0;
    }

    .hero-section {
        min-height: calc(100vh - 60px);
    }

    .hero-content {
        text-align: center;
        padding: 1.5rem 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .form-container {
        padding: 2rem;
    }

    .container-70 {
        width: 95%;
    }

    /* Container hero-section - Ajuste mobile grande */
    .container-75-hero-section {
        width: 95%;
    }

    .section-header {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 60px;
    }

    .hero-section {
        min-height: 600px;
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .stats-section, .services-section, .target-section,
    .how-it-works, .testimonials-section, .urgent-section,
    .contact-section, .about-section {
        padding: 3rem 0;
    }

    .form-container {
        padding: 1.5rem;
    }

    .container-70 {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Container hero-section - Ajuste mobile pequeno */
    .container-75-hero-section {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .section-header {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }
}

/* Smooth scroll padding adjustment for fixed navbar */
html {
    scroll-padding-top: var(--navbar-height);
}

/* Print styles */
@media print {
    .navbar-custom,
    .footer-section {
        display: none;
    }

    body {
        padding-top: 0;
    }
}

/* ===========================
   MULTI-STEP FORM STYLES
   =========================== */

/* Progress Bar */
.form-progress {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 10px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.form-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #8b5cf6);
    width: 25%;
    transition: width 0.4s ease;
    border-radius: 10px;
}

/* Step Indicators */
.step-indicators {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.step-indicator.active {
    opacity: 1;
}

.step-indicator.completed .step-indicator-number {
    background: var(--primary-color);
    color: white;
}

.step-indicator.completed .step-indicator-number::after {
    content: '\F26B';
    font-family: 'bootstrap-icons';
    position: absolute;
    font-size: 0.9rem;
}

.step-indicator-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.step-indicator.active .step-indicator-number {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 0 4px rgba(65, 41, 104, 0.1);
}

.step-indicator-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    font-weight: 500;
}

.step-indicator.active .step-indicator-label {
    color: var(--primary-color);
    font-weight: 600;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.form-step.active {
    opacity: 1;
    transform: translateX(0);
}

.form-step-title {
    color: var(--primary-color);
    font-weight: 600;
    transition: opacity 0.3s ease;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: space-between;
}

.btn-prev,
.btn-next {
    padding: 0.9rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.btn-prev {
    background: #e2e8f0;
    color: var(--text-dark);
}

.btn-prev:hover {
    background: #cbd5e1;
    transform: translateX(-3px);
}

.btn-next {
    background: var(--primary-color);
    color: white;
    margin-left: auto;
    box-shadow: 0 4px 15px rgba(65, 41, 104, 0.3);
}

.btn-next:hover {
    background: var(--primary-dark);
    transform: translateX(3px);
    box-shadow: 0 6px 20px rgba(65, 41, 104, 0.4);
}

/* Required and Optional Marks */
.required-mark {
    color: var(--accent-color);
    font-weight: 600;
}

.optional-mark {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
}

/* Validation Feedback */
.form-control.is-invalid {
    border-color: var(--accent-color);
    background-image: none;
}

.form-control.is-valid {
    border-color: #10b981;
    background-image: none;
}

.invalid-feedback {
    display: none;
    color: var(--accent-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}

.form-control:focus.is-invalid {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(239, 68, 68, 0.1);
}

.form-control:focus.is-valid {
    border-color: #10b981;
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.1);
}

/* Responsive Adjustments for Multi-Step Form */
@media (max-width: 768px) {
    .form-container {
        padding: 2rem 1.5rem;
    }

    .step-indicators {
        gap: 0.5rem;
    }

    .step-indicator-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .step-indicator-label {
        font-size: 0.75rem;
    }

    .form-navigation {
        flex-direction: column-reverse;
    }

    .btn-prev,
    .btn-next {
        width: 100%;
        justify-content: center;
    }

    .btn-next {
        margin-left: 0;
    }

    .btn-submit {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .form-container {
        padding: 1.5rem 1rem;
    }

    .step-indicator-label {
        display: none;
    }

    .form-progress {
        margin-bottom: 1.5rem;
    }

    .step-indicators {
        margin-bottom: 1.5rem;
    }
}

/* ===========================
   WHATSAPP BUTTON
   =========================== */

.whatsapp-button {
  position: fixed;
  bottom: 35px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366; /* Cor verde do WhatsApp */
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none !important;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  text-decoration: none !important;
}

.whatsapp-button:visited,
.whatsapp-button:active,
.whatsapp-button:focus {
  text-decoration: none !important;
}

.whatsapp-button svg {
  width: 40px;
  height: 40px;
  fill: #FFF !important; /* Força a cor branca para o ícone */
}
