/* Reset e Variáveis - Identidade Visual CI Irlanda */
:root {
    /* Cores Principais - Laranja CI */
    --primary-color: #f37400;
    --primary-dark: #d86600;
    --primary-light: #f69433;
    
    /* Cores de Destaque - Roxo da Marca (Ameixa/Berinjela) */
    --purple-primary: #421f39;
    --purple-dark: #35192f;
    --purple-light: #5a2d4f;
    --purple-bg: #421f39;
    
    /* Cores Neutras */
    --white: #ffffff;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    
    /* Backgrounds */
    --bg-purple: #421f39;
    --bg-purple-light: #5a2d4f;
    --bg-purple-dark: #35192f;
    --bg-section: #ffffff;
    --bg-light: #f9fafb;
    
    /* Estados */
    --success: #27ae60;
    --error: #e74c3c;
    
    /* Sombras */
    --shadow: 0 2px 8px rgba(66, 31, 57, 0.15);
    --shadow-lg: 0 4px 16px rgba(66, 31, 57, 0.2);
    --shadow-orange: 0 4px 16px rgba(243, 116, 0, 0.3);
    
    /* Bordas */
    --border-color: #e5e7eb;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    word-wrap: normal;
    overflow-wrap: normal;
    word-break: normal;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    hyphens: none;
}

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

/* Header com Logo */
/* Header - MOBILE FIRST */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.75rem 0;
}

.header-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
}

.header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-width: 0;
}

.header-cta {
    display: flex;
    align-items: center;
    min-width: 0;
}

.logo {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.header-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.55rem 0.75rem;
    border-radius: 9px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.68rem;
    box-shadow: var(--shadow-orange);
    white-space: nowrap;
    flex-shrink: 0;
    display: block;
    max-width: min(46vw, 210px);
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 116, 0, 0.5);
}

.language-switcher-flags {
    display: flex;
    align-items: center;
    gap: 0.22rem;
}

.language-flag-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    min-height: 32px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    position: relative;
    text-decoration: none;
}

@media (min-width: 640px) {
    .language-flag-btn {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
    }
}

@media (min-width: 992px) {
    .language-flag-btn {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
    }
}

.language-flag-btn:active {
    transform: scale(0.95);
}

.language-flag-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(243, 116, 0, 0.3);
    border-color: var(--primary-color);
}

@media (hover: none) {
    .language-flag-btn:hover {
        transform: scale(1);
    }
}

.language-flag-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(243, 116, 0, 0.4);
    transform: scale(1.05);
}

.language-flag-btn.active:active {
    transform: scale(1);
}

.language-flag-btn.active .language-flag-icon {
    filter: brightness(1.2);
}

.language-flag-icon {
    width: 72%;
    height: 72%;
    object-fit: cover;
    border-radius: 3px;
    display: block;
}

/* Hero Section com Formulário - MOBILE FIRST */
.hero-with-form {
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding: 96px 0 32px;
    display: flex;
    align-items: center;
    background: var(--purple-bg);
}

/* Bottom vignette — fades hero into the next section */
.hero-with-form::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--purple-bg));
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Focus on the graduation cap, not the dark bookshelf top */
    object-position: center 42%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Mobile: 68% tint — lets the moody academic atmosphere show through
       while keeping the text fully readable */
    background: rgba(53, 25, 47, 0.68);
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out;
    border: 2px solid rgba(255, 255, 255, 0.3);
}


.hero-content-column {
    position: relative;
    z-index: 10;
    text-align: left;
    text-align: justify;
}

.hero-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.hero-form-column {
    position: relative;
    z-index: 10;
    width: 100%;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-title {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease-out;
    color: rgba(255, 255, 255, 0.88);
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: left;
}

.hero-title-2 {
    font-size: 2.4rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    color: var(--white);
    word-wrap: break-word;
    overflow-wrap: break-word;
    letter-spacing: -0.01em;
}

.hero-orange {
    color: var(--primary-color);
}

.hero-title .highlight {
    color: var(--primary-color);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 0.88rem;
    font-weight: 400;
    margin-bottom: 0;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    color: var(--white);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: left;
}

/* Hero CTA button */
.hero-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 28px;
    background: var(--primary-color);
    color: var(--white) !important;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none !important;
    border: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    margin-top: 0.75rem;
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    white-space: nowrap;
}

.hero-cta-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 24px rgba(243, 116, 0, 0.4);
    transform: translateY(-2px);
}

/* Benefícios Principais do Hero - MOBILE FIRST */
.hero-benefits-main {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-benefits-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.08em;
}

.hero-benefits-subtitle {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 0.1rem;
}

.hero-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-benefit-card:active {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(0.98);
    border-color: rgba(243, 116, 0, 0.5);
}

.hero-benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(243, 116, 0, 0.2);
    border-radius: 8px;
}

.hero-benefit-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.hero-benefit-content p {
    font-size: 0.8rem;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-social-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.social-proof-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.social-proof-item:active {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0.95);
}

.social-proof-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.social-proof-label {
    font-size: 0.7rem;
    color: var(--white);
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-guarantee {
    font-size: 0.8rem;
    opacity: 0.95;
    margin-top: 1rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    text-align: center;
    line-height: 1.5;
}


/* Form Wrapper no Hero - MOBILE FIRST */
.form-wrapper {
    background: var(--white);
    border-radius: 12px;
    padding: 0.85rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-color);
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    width: 100%;
    order: -1; /* Form aparece primeiro no mobile */
}

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


.form-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.form-header h2 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-weight: 700;
}

.form-header p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-bottom: 1rem;
}

.form-subtitle {
    color: var(--text-dark);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Processo de Acompanhamento */
.process-steps {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--purple-primary);
}

.process-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--purple-primary);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.process-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.process-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--purple-primary);
}

.process-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.process-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    background: var(--bg-light);
    padding: 0.5rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
}

.form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.58rem 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple-primary);
    box-shadow: 0 0 0 3px rgba(66, 31, 57, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--purple-primary);
}

.checkbox-group input[type="checkbox"]:checked {
    accent-color: var(--purple-primary);
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.72rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    margin-top: 0.25rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: var(--shadow-orange);
}

.submit-btn:active {
    background: var(--primary-dark);
    transform: scale(0.98);
    box-shadow: 0 6px 24px rgba(243, 116, 0, 0.5);
}

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

.turnstile-container {
    display: none;
    justify-content: center;
    margin-top: 0.5rem;
}

.turnstile-container.is-visible {
    display: flex;
}

.form-message {
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: var(--success);
    border: 2px solid var(--success);
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: var(--error);
    border: 2px solid var(--error);
    display: block;
}

.form-message.warning {
    background: #fef3c7;
    color: #92400e;
    border: 2px solid #f59e0b;
    display: block;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.5;
}

/* Social Proof Section */
.social-proof-section {
    padding: 80px 20px;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    text-align: center;
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

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

.about-text {
    text-align: left;
}

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

.about-description:last-child {
    margin-bottom: 0;
}

/* Benefits Section - MOBILE FIRST */
.benefits {
    padding: 40px 15px;
    background: var(--bg-light);
}

.benefits-subtitle {
    text-align: center;
    color: var(--text-light);
    margin: -0.5rem auto 1.5rem;
    max-width: 760px;
    font-size: 0.95rem;
}

.benefits-differential {
    max-width: 860px;
    text-align: center;
    margin: -0.25rem auto 1.25rem;
    padding: 1rem 1.1rem;
    border-left: 4px solid var(--primary-color);
    background: #fff7ef;
    border-radius: 10px;
}

.benefits-differential-tag {
    color: var(--purple-primary);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.benefits-differential h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.benefits-differential p {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.55;
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.section-title .highlight {
    color: var(--purple-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.benefits-marquee {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.benefits-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: benefitsTicker 85s linear infinite;
}

.benefits-marquee:hover .benefits-track,
.benefits-marquee:active .benefits-track {
    animation-play-state: paused;
}

.benefit-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: var(--shadow);
}

.benefit-card--marquee {
    min-width: 280px;
    max-width: 280px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

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

.benefit-card:active {
    transform: scale(0.98);
    box-shadow: var(--shadow-lg);
    border-color: var(--purple-primary);
    background: var(--white);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    word-wrap: break-word;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

@keyframes benefitsTicker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .benefits-track {
        animation: none;
    }

    .benefits-marquee {
        overflow-x: auto;
        mask-image: none;
        -webkit-mask-image: none;
    }
}

/* Final CTA Section - MOBILE FIRST */
.final-cta {
    padding: 40px 15px;
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
    color: var(--white);
    text-align: center;
}

.final-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
    line-height: 1.3;
    word-wrap: break-word;
}

.final-cta-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.5;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
}

.final-cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-orange);
    margin-bottom: 1rem;
    width: 100%;
    max-width: 100%;
}

.final-cta-button:active {
    background: var(--primary-dark);
    transform: scale(0.98);
    box-shadow: 0 6px 24px rgba(243, 116, 0, 0.5);
}

.final-cta-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Reviews Section - MOBILE FIRST */
.reviews-section {
    padding: 40px 15px;
    background: var(--white);
}

.reviews-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.reviews-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 760px;
    margin: 0.4rem auto 0.8rem;
}

.reviews-summary {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    display: none;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    align-items: center;
    gap: 0.5rem;
}

.reviews-track-wrapper {
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 0.9rem;
    transition: transform 0.35s ease;
    will-change: transform;
}

.review-card {
    flex: 0 0 100%;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    padding: 0.85rem;
    min-height: 190px;
}

.review-stars {
    color: #f59e0b;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.review-text {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: 0.75rem;
}

.review-author {
    color: var(--purple-primary);
    font-weight: 700;
    font-size: 0.85rem;
}

.review-time {
    color: var(--text-light);
    font-size: 0.78rem;
    margin-top: 0.25rem;
}

.review-link {
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 0.35rem;
    text-decoration: none;
    display: inline-block;
}

.reviews-carousel-btn {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: none;
    background: var(--purple-primary);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.reviews-carousel-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 0.85rem;
}

.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    padding: 0;
}

.reviews-dot.is-active {
    background: var(--primary-color);
}

.review-skeleton .review-text {
    color: var(--text-light);
}

/* Location Section - MOBILE FIRST */
.location-section {
    padding: 40px 15px;
    background: var(--bg-light);
}

.location-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    margin-top: -0.75rem;
}

.location-section .section-title {
    margin-bottom: 0.5rem;
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.store-photo {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    background: #150f14;
    min-height: 250px;
}

.store-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
    display: none;
}

.store-image.is-active {
    display: block;
}

.store-carousel-track {
    position: relative;
    min-height: 250px;
}

.store-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(66, 31, 57, 0.75);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.store-carousel-btn.prev {
    left: 10px;
}

.store-carousel-btn.next {
    right: 10px;
}

.store-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 2;
}

.store-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    padding: 0;
}

.store-carousel-dot.is-active {
    background: var(--primary-color);
}

.store-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
    min-height: 300px;
    width: 100%;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.location-info-item {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.location-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.location-info-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.location-info-item p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.85rem;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: var( --purple-primary);
    color: var(--white);
    padding: 3rem 20px 2rem;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var( --text-white);
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--purple-primary);
}

.footer-section a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Orange highlight for "primeiro passo" */
.caveat-highlight {
    color: var(--primary-color);
}

/* Consultant info in review cards */
.review-consultant {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.9rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.consultant-avatar {
    position: relative;
    flex-shrink: 0;
}

.consultant-photo {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    background: var(--bg-light);
    display: block;
}

.consultant-photo-placeholder {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
}

.verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: #1d9bf0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: var(--white);
    font-weight: 700;
    border: 1.5px solid var(--white);
    line-height: 1;
}

.consultant-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.consultant-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.consultant-role {
    font-size: 0.72rem;
    color: var(--text-light);
    line-height: 1.2;
}

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

/* Responsive - MOBILE FIRST */
/* Tablet e Desktop (768px+) */
@media (min-width: 768px) {
    .container {
        max-width: 1200px;
        padding: 0 20px;
    }

    .header {
        padding: 1rem 0;
    }

    .header-actions {
        gap: 0.75rem;
    }

    .logo {
        height: 50px;
    }

    .header-button {
        padding: 0.68rem 1.25rem;
        font-size: 0.88rem;
        max-width: none;
        overflow: visible;
        text-overflow: clip;
    }

    .hero-with-form {
        min-height: 100vh;
        padding: 100px 0 40px;
        align-items: center;
    }

    .hero-bg-image {
        width: 62%;
        left: auto;
        right: 0;
        opacity: 1;
    }

    .hero-overlay {
        background: linear-gradient(
            to right,
            var(--purple-bg) 36%,
            rgba(66, 31, 57, 0.85) 52%,
            rgba(66, 31, 57, 0.2) 74%,
            rgba(66, 31, 57, 0.0) 92%
        );
    }

    .hero-container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
        align-items: center;
        gap: 48px;
        max-width: 1280px;
        padding: 0 60px;
    }

    .hero-content-column {
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 560px;
    }

    .hero-form-column {
        justify-self: end;
        width: 100%;
    }

    .hero-form-card {
        margin: 0;
    }

    /* Hide bottom vignette on desktop — horizontal fade handles the transition */
    .hero-with-form::after {
        display: none;
    }

    .hero-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .hero-title-2 {
        font-size: 3.6rem;
        margin-bottom: 1rem;
        line-height: 1.05;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.35rem;
        max-width: 92%;
    }

    .hero-benefits-main {
        gap: 0.65rem;
        margin: 1.15rem 0;
    }

    .hero-benefits-title {
        font-size: 1.1rem;
    }

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

    .hero-benefit-card {
        padding: 0.85rem 1rem;
        gap: 0.75rem;
    }

    .hero-benefit-card:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateX(5px);
        border-color: rgba(243, 116, 0, 0.5);
    }

    .hero-benefit-icon {
        width: 42px;
        height: 42px;
        font-size: 1.6rem;
    }

    .hero-benefit-content h3 {
        font-size: 1rem;
    }

    .hero-benefit-content p {
        font-size: 0.84rem;
    }

    .form-header h2 {
        font-size: 2rem;
        margin-bottom: 0.6rem;
        line-height: 1.15;
    }

    .contact-form {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.72rem 0.8rem;
        align-items: end;
        width: 100%;
    }

    .form-group {
        gap: 0.28rem;
    }

    .contact-form .form-group.field-half {
        grid-column: auto;
        min-width: 0;
    }

    .form-group label {
        font-size: 0.82rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.62rem 0.78rem;
        font-size: 0.92rem;
        width: 100%;
        max-width: 100%;
    }

    .submit-btn {
        padding: 0.74rem 1.1rem;
        font-size: 0.95rem;
        margin-top: 0.15rem;
        grid-column: 1 / -1;
    }

    .contact-form #turnstileContainer,
    .contact-form #formMessage {
        grid-column: 1 / -1;
    }

    .hero-social-proof {
        display: flex;
        justify-content: flex-start;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .social-proof-item {
        padding: 1rem 1.5rem;
    }

    .social-proof-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
    }

    .social-proof-number {
        font-size: 2rem;
    }

    .social-proof-label {
        font-size: 0.85rem;
    }

    .hero-guarantee {
        font-size: 0.9rem;
        text-align: left;
        margin-top: 1.5rem;
    }

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

    .benefits {
        padding: 60px 20px;
    }

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

    .benefits-differential {
        padding: 1.2rem 1.25rem;
    }

    .benefits-differential h3 {
        font-size: 1.25rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .benefit-card--marquee {
        min-width: 340px;
        max-width: 340px;
    }

    .benefit-card {
        padding: 2rem;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: var(--purple-primary);
    }

    .benefit-icon {
        font-size: 3rem;
    }

    .benefit-card h3 {
        font-size: 1.5rem;
    }

    .benefit-card p {
        font-size: 1rem;
    }

    .final-cta {
        padding: 60px 20px;
    }

    .final-cta-title {
        font-size: 2rem;
    }

    .final-cta-subtitle {
        font-size: 1.2rem;
        max-width: 700px;
    }

    .final-cta-button {
        padding: 1.2rem 3rem;
        font-size: 1.2rem;
        width: auto;
        max-width: none;
    }

    .final-cta-button:hover {
        background: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 6px 24px rgba(243, 116, 0, 0.5);
    }

    .reviews-section {
        padding: 60px 20px;
    }

    .reviews-carousel {
        grid-template-columns: 44px 1fr 44px;
        gap: 0.75rem;
    }

    .reviews-carousel-btn {
        width: 44px;
        height: 44px;
    }

    .review-card {
        flex-basis: calc((100% - 0.9rem) / 2);
        min-height: 250px;
        padding: 1.2rem;
    }

    .location-section {
        padding: 60px 20px;
    }

    .location-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 600px;
    }

    .location-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .store-image {
        min-height: 400px;
    }

    .location-info {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 2rem;
    }

    .location-info-item {
        padding: 1.5rem;
        gap: 1rem;
    }

    .location-icon {
        font-size: 2rem;
    }

    .location-info-item h3 {
        font-size: 1.1rem;
    }

    .location-info-item p {
        font-size: 0.95rem;
    }

    .footer {
        padding: 3rem 20px 2rem;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

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

    .footer-bottom {
        padding-top: 2rem;
    }

    .footer-bottom p {
        font-size: 0.9rem;
    }

    .form-header h2 {
        font-size: 1.5rem;
    }

    .submit-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 24px rgba(243, 116, 0, 0.5);
    }
}

/* Desktop Grande (1024px+) */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 1.2rem;
    }

    .hero-title-2 {
        font-size: 4rem;
    }

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

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .benefit-card--marquee {
        min-width: 360px;
        max-width: 360px;
    }

    .final-cta-title {
        font-size: 2.5rem;
    }

    .final-cta-subtitle {
        font-size: 1.3rem;
    }

    .review-card {
        flex-basis: calc((100% - 1.8rem) / 3);
    }
}

/* ── Hero Form Card (inline) ── */
.hero-form-column {
    position: relative;
    z-index: 10;
    width: 100%;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px 18px 18px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.hero-form-header {
    margin-bottom: 12px;
}

.hero-form-kicker {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--purple-primary);
    margin-bottom: 4px;
}

.hero-form-title {
    font-size: 17px;
    font-weight: 900;
    color: var(--purple-primary);
    line-height: 1.2;
    margin-bottom: 3px;
}

.hero-form-sub {
    font-size: 15px;
    color: var(--primary-color);
    line-height: 1.25;
    font-weight: 800;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    margin-bottom: 0;
}

.hero-form .form-group label {
    font-size: 11px;
    font-weight: 700;
    color: var(--purple-primary);
    letter-spacing: 0.3px;
}

.hero-form .form-group label .req { color: var(--primary-color); margin-left: 2px; }

.hero-form .form-group input,
.hero-form .form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e0dde0;
    border-radius: 10px;
    font-size: 14px;
    color: #1a1a1a;
    background: #faf9fa;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
    font-family: 'Montserrat', sans-serif;
}

.hero-form .form-group input::placeholder { color: #bbb; }

.hero-form .form-group input:focus,
.hero-form .form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(243, 116, 0, 0.12);
    background: #fff;
}

.hero-form .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.hero-form-submit {
    width: 100%;
    padding: 13px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.hero-form-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(243, 116, 0, 0.35);
}

.hero-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.hero-form-trust {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.hero-form-trust span {
    font-size: 10px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.hero-form .form-honeypot {
    display: none !important;
}

.hero-form .form-message {
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 10px;
    text-align: center;
}

.hero-form .form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.hero-form .form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

@media (min-width: 600px) {
    .hero-form-card {
        padding: 32px 28px 28px;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
    }

    .hero-form-header {
        margin-bottom: 20px;
    }

    .hero-form-kicker {
        margin-bottom: 6px;
    }

    .hero-form-title {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .hero-form-sub {
        font-size: 17px;
        line-height: 1.25;
    }

    .hero-form {
        gap: 14px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .hero-form .form-group input,
    .hero-form .form-group select {
        padding: 13px 15px;
        border-radius: 12px;
    }

    .hero-form-submit {
        padding: 16px;
        font-size: 15px;
        border-radius: 14px;
    }

    .hero-form-trust {
        gap: 16px;
        margin-top: 14px;
    }
}
