/* CSS Compartilhado para todas as páginas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1A2E44;
    --primary-dark: #0D223B;
    --secondary: #D4C9A8;
    --accent: #A7C9A4;
    --accent-soft: #BBD7B6;
    --background: #F7F7F7;
    --text: #333333;
    --gray: #6B737C;
    --white: #FFFFFF;
}

body {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6,
nav a,
.logo,
.cta-button,
button,
label {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navigation */
nav {
    background: var(--primary-dark);
    padding: 1rem 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Menu Toggle Button (Hamburger) - Escondido no desktop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--white);
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.menu-toggle .icon-svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    fill: none;
    transition: opacity 0.3s, transform 0.3s;
}

.menu-toggle .close-icon {
    display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
    display: none;
}

.menu-toggle[aria-expanded="true"] .close-icon {
    display: block;
}

.language-switcher {
    position: relative;
    display: flex;
    align-items: center;
}

.language-switcher-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s, transform 0.2s;
    border-radius: 4px;
}

.language-switcher-btn:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.language-switcher-btn:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.language-switcher-btn[aria-expanded="true"] {
    opacity: 0.9;
}

.flag-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 18px;
    flex-shrink: 0;
}

.flag-icon svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.language-switcher-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--primary-dark);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    list-style: none;
    padding: 0.5rem 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1001;
}

.language-switcher[data-open="true"] .language-switcher-menu,
.language-switcher-menu:focus-within {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-option .flag-icon {
    width: 20px;
    height: 15px;
}

.language-name {
    flex: 1;
}

nav a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.75;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: opacity 0.3s;
}

/* Versão branca para fundos escuros (nav, footer) */
.logo-white {
    display: block;
}

.logo-color {
    display: none;
}

/* Versão colorida para fundos claros */
.logo.light-bg .logo-white {
    display: none;
}

.logo.light-bg .logo-color {
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 5% 5rem;
    text-align: center;
    position: relative;
}

.hero {
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(13, 34, 59, 0.4) 0%, rgba(26, 46, 68, 0.3) 100%),
        radial-gradient(circle at 20% 30%, rgba(167, 201, 164, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(212, 201, 168, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* Elementos decorativos geométricos suaves */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(circle at 85% 15%, rgba(167, 201, 164, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 15% 85%, rgba(212, 201, 168, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(167, 201, 164, 0.08) 0%, transparent 70%);
    animation: floatBackground 20s ease-in-out infinite;
}

@keyframes floatBackground {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    33% {
        transform: translate(2%, -2%) scale(1.05);
        opacity: 0.95;
    }
    66% {
        transform: translate(-2%, 2%) scale(0.95);
        opacity: 1;
    }
}

/* Elementos decorativos adicionais (círculos flutuantes) */
.hero-decorative {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
    opacity: 0.3;
}

.hero-decorative-1 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: -100px;
    right: 10%;
    animation: float1 15s ease-in-out infinite;
}

.hero-decorative-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    bottom: -50px;
    left: 15%;
    animation: float2 18s ease-in-out infinite;
}

.hero-decorative-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-soft);
    top: 50%;
    right: 5%;
    animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(15px, -15px) scale(1.05);
    }
}

/* Respeitar preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    .hero::after,
    .hero-decorative-1,
    .hero-decorative-2,
    .hero-decorative-3 {
        animation: none;
    }
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 1;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    animation: fadeInUp 1.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: 1px solid transparent;
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    background: var(--secondary);
    color: var(--primary-dark);
}

/* Sections */
section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    font-variant-ligatures: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section .subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.profile-img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary);
    margin: 0 auto;
    object-fit: cover;
}

.profile-img img.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.profile-img .icon-svg {
    width: 120px;
    height: 120px;
    stroke: var(--primary);
    fill: none;
}

/* Ícones SVG Gerais */
.icon-svg {
    display: inline-block;
    vertical-align: middle;
}

.icon-inline {
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(26, 46, 68, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(26, 46, 68, 0.2);
    border-color: var(--accent);
}

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

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2rem 1rem 2rem;
}

.service-icon {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.service-icon .icon-svg {
    width: 64px;
    height: 64px;
    stroke: var(--primary);
    fill: none;
    transition: stroke 0.3s ease;
}

.service-card:hover .service-icon .icon-svg {
    stroke: var(--accent);
}

.service-card h3 {
    color: var(--primary);
    margin: 0;
    font-size: 1.5rem;
    flex: 1;
}

.service-separator {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--secondary), transparent);
    margin: 0 2rem;
    border: none;
}

.service-content {
    padding: 1.5rem 2rem 1rem 2rem;
}

.service-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Service Ribbon - Não Válido */
.service-card.service-invalid {
    opacity: 0.7;
    position: relative;
    filter: grayscale(20%);
}

.service-ribbon {
    position: absolute;
    top: 15px;
    right: -35px;
    background: #dc3545;
    color: white;
    padding: 8px 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
}

.service-ribbon .ribbon-text {
    white-space: nowrap;
}

.service-ribbon .ribbon-icon {
    width: 14px;
    height: 14px;
    stroke: white;
    flex-shrink: 0;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(167, 201, 164, 0.3);
}

.step:hover .step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(167, 201, 164, 0.5);
    background: var(--secondary);
}

.step h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    background: var(--secondary);
    border-radius: 15px;
    margin-bottom: 4rem;
}

/* WhatsApp Button */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button .icon-svg {
    width: 24px;
    height: 24px;
    fill: white;
    stroke: none;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10001;
    animation: floatIn 0.5s ease-out;
}

.whatsapp-float-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: white;
    padding: 0.6rem 0.9rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.whatsapp-float-button:hover {
    background: #20BA5A;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-button .icon-svg {
    width: 24px;
    height: 24px;
    fill: white;
    stroke: none;
    flex-shrink: 0;
}

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

/* Pulse animation para chamar atenção (opcional - pode ser removido se não desejar) */
.whatsapp-float-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: #25D366;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 2s infinite;
    opacity: 0.5;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.info-item:hover {
    transform: translateX(5px);
    background: rgba(212, 201, 168, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent);
}

.info-icon .icon-svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    fill: none;
}

.phone-disclaimer {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: normal;
    font-style: italic;
    margin-left: 0.25rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

label {
    margin-bottom: 0.375rem;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

input, textarea, select {
    padding: 0.75rem;
    border: 2px solid var(--secondary);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary);
}

textarea {
    min-height: 100px;
    resize: vertical;
}

button[type="submit"] {
    background: var(--primary);
    color: white;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 0.5rem;
}

button[type="submit"]:hover {
    background: var(--primary-dark);
}

/* Consent Checkbox */
.form-group-consent {
    margin-top: 0.25rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    min-width: 18px;
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.checkbox-text {
    flex: 1;
}

.checkbox-text a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s;
}

.checkbox-text a:hover {
    color: var(--primary-dark);
}

.form-group-consent .form-error {
    display: block;
    color: #d32f2f;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    padding-left: 1.75rem;
}

.checkbox-label input[type="checkbox"]:invalid + .checkbox-text {
    color: #d32f2f;
}

.checkbox-label input[type="checkbox"]:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Appointment Section */
.appointment-section {
    background: var(--accent);
    text-align: center;
    border-radius: 15px;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.appointment-section h2 {
    font-weight: 700 !important;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    letter-spacing: -0.02em;
    text-transform: none;
    font-variant: normal;
    -webkit-font-feature-settings: normal;
    font-feature-settings: normal;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.appointment-section h2::first-letter {
    font-weight: 700 !important;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-size: inherit;
    line-height: inherit;
    float: none;
    font-synthesis: none;
}

/* Calendar Integration */
.calendar-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.calendar-embed {
    width: 100%;
    min-height: 600px;
    border: none;
    border-radius: 10px;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 3rem 5%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo-container {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
    display: inline-block;
}

.footer-logo .logo-img {
    height: 60px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.footer-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-badges {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-opp-badge {
    text-align: left;
}

.opp-logo-footer {
    width: 100px;
    height: auto;
    opacity: 1;
    display: block;
    background: white;
    padding: 0.5rem;
    border-radius: 5px;
    object-fit: contain;
}

.opp-number-footer {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.footer-ers-badge {
    text-align: left;
    display: flex;
    align-items: center;
}

.ers-logo-footer {
    width: 110px;
    height: auto;
    min-height: 60px;
    max-height: 70px;
    opacity: 1;
    display: block;
    background: white;
    padding: 0.5rem;
    border-radius: 5px;
    object-fit: contain;
    filter: none !important;
    -webkit-filter: none !important;
}

.ers-logo-footer svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-europsy-badge {
    text-align: left;
    display: flex;
    align-items: center;
}

.europsy-logo-footer {
    width: 120px;
    height: auto;
    min-height: 65px;
    max-height: 80px;
    opacity: 1;
    display: block;
    background: white;
    padding: 0.3rem;
    border-radius: 5px;
    object-fit: contain;
    filter: none !important;
    -webkit-filter: none !important;
}

.europsy-logo-footer svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.footer-links-row {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Content Pages */
.content-page {
    padding: 2rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.content-page h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.content-page h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-page h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-page ul, .content-page ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-page li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.timeline {
    margin: 2rem 0;
}

.timeline-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--secondary);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
}

.timeline-item h3 {
    color: var(--primary);
    margin-top: 0;
}

.timeline-item .date {
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-item ul {
    padding-left: 2rem;
}

/* OPP Badge */
.opp-badge-container {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(26, 46, 68, 0.08);
    margin-top: 1.5rem;
}

.opp-logo {
    max-width: 200px;
    height: auto;
    flex-shrink: 0;
}

.opp-info {
    flex: 1;
}

.opp-info p {
    margin-bottom: 1rem;
    line-height: 1.8;
}


/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Padding para faq-items que não são expansíveis (usados em outras páginas) */
.faq-item > h3:first-child {
    padding: 1.5rem 1.5rem 0.75rem 1.5rem;
    margin: 0;
}

.faq-item > h3:first-child + p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
}

.faq-item > h3:first-child + p + p {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.faq-item > h3:first-child + p + p + p {
    padding: 0 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}
.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.faq-item.expanded {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(167, 201, 164, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(26, 46, 68, 0.02);
}

.faq-question:focus {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon .icon-svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    fill: none;
}

.faq-text {
    flex: 1;
    text-align: left;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-chevron .icon-svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    fill: none;
}

.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 2000px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    padding-top: 0.5rem;
    line-height: 1.8;
    color: var(--text);
}

.faq-answer p + p {
    margin-top: 1rem;
}

/* Acessibilidade - suporte para prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .faq-item,
    .faq-question,
    .faq-chevron,
    .faq-answer {
        transition: none;
    }
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card h3 {
    color: var(--primary);
    margin-top: 0;
}

.blog-card .date {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Success Message */
.success-message {
    display: none;
    background: var(--accent-soft);
    color: var(--primary-dark);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid var(--accent);
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.error-message {
    display: none;
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid #f5c6cb;
}

.error-message.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--white);
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: slideUp 0.4s ease-out;
    border-top: 3px solid var(--secondary);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-family: 'Montserrat', sans-serif;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-link {
    color: var(--accent);
    text-decoration: underline;
    transition: opacity 0.3s;
}

.cookie-link:hover {
    opacity: 0.8;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--accent);
    color: var(--primary-dark);
}

.cookie-btn-accept:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cookie-banner.hidden {
    animation: slideDown 0.4s ease-out forwards;
}

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

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@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);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Classes para animações de scroll */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.fade-in-up {
    transform: translateY(40px);
}

.animate-on-scroll.fade-in-left {
    transform: translateX(-40px);
}

.animate-on-scroll.fade-in-right {
    transform: translateX(40px);
}

.animate-on-scroll.scale-in {
    transform: scale(0.95);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Delay classes para animações escalonadas */
.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

/* Reduzir animações para usuários que preferem menos movimento */
@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;
    }
    
    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    /* Elementos decorativos menores no mobile */
    .hero-decorative-1 {
        width: 200px;
        height: 200px;
        top: -50px;
        right: 5%;
    }

    .hero-decorative-2 {
        width: 150px;
        height: 150px;
        bottom: -30px;
        left: 10%;
    }

    .hero-decorative-3 {
        width: 100px;
        height: 100px;
        top: 40%;
        right: 2%;
    }

    section {
        padding: 3rem 5%;
    }

    section h2 {
        font-size: 2rem;
    }

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Navigation - Menu Hambúrguer no mobile */
    nav {
        padding: 0.75rem 3%;
    }

    .nav-container {
        position: relative;
        width: 100%;
    }

    /* Logo no mobile */
    .nav-container .logo {
        flex-shrink: 0;
    }

    /* Mostrar botão hambúrguer no mobile */
    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    /* Esconder menu normal no mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.3);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    /* Menu aberto */
    .nav-menu.mobile-open {
        right: 0;
    }

    /* Overlay quando menu está aberto */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .nav-menu .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        text-align: center;
        border-radius: 50px;
        border: none;
        margin-top: 0.5rem;
    }

    .nav-menu .language-switcher {
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: 0.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .nav-menu .language-switcher-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 0.75rem 0;
        color: var(--white);
        font-size: 0.9rem;
        pointer-events: none;
    }
    
    .nav-menu .language-switcher-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        padding: 0;
        display: block !important;
    }
    
    .nav-menu .language-option {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu .language-option:last-child {
        border-bottom: none;
    }

    .logo-img {
        height: 40px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .content-page {
        padding: 1.5rem 5%;
    }

    .content-page h1 {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    /* Services List Responsive */
    .service-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
        gap: 1rem;
    }
    
    .service-icon .icon-svg {
        width: 48px;
        height: 48px;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    .service-separator {
        margin: 0 1.5rem;
    }
    
    .service-content {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
    
    /* Cookie Banner Responsive */
    .cookie-banner {
        padding: 1rem 5%;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cookie-banner-text {
        min-width: auto;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    /* OPP Badge Responsive */
    .opp-badge-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .opp-logo {
        max-width: 150px;
    }
    
    /* Footer Responsive */
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-left,
    .footer-right {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-opp-badge,
    .footer-ers-badge,
    .footer-europsy-badge {
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-links-row {
        justify-content: center;
    }
    
    .opp-logo-footer,
    .ers-logo-footer,
    .europsy-logo-footer {
        margin: 0 auto;
    }
    
    /* WhatsApp Floating Button Responsive */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .whatsapp-float-button .icon-svg {
        width: 24px;
        height: 24px;
    }
    
    .whatsapp-float-button span {
        display: none;
    }
    
    /* Mostrar apenas ícone no mobile muito pequeno */
    .whatsapp-float-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* Ajustar animações para mobile - menos movimento */
    .animate-on-scroll {
        transform: translateY(20px) !important;
    }
    
    .service-card:hover {
        transform: translateY(-5px) scale(1) !important;
    }
    
    .step:hover {
        transform: translateY(-3px) !important;
    }
    
    .step:hover .step-number {
        transform: scale(1.1) !important;
    }
}

/* Para ecrãs muito pequenos (telemóveis pequenos) */
@media (max-width: 480px) {
    /* Navigation - Menu hambúrguer */
    nav {
        padding: 0.6rem 2%;
    }

    .nav-menu {
        width: 85%;
        max-width: 280px;
        padding: 4.5rem 1.5rem 2rem;
    }

    .logo-img {
        height: 35px;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }

    .nav-menu .cta-button {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }

    .nav-menu .language-switcher {
        font-size: 0.85rem;
    }

    /* WhatsApp Floating Button - Apenas ícone */
    .whatsapp-float-button {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    
    .whatsapp-float-button .icon-svg {
        width: 32px;
        height: 32px;
    }
}


/* --- Back to Top Button --- */
#back-to-top {
    position: fixed;
    bottom: 75px;
    right: 32px;
    z-index: 10020;
    display: none;
    background: var(--secondary);
    color: var(--primary-dark);
    border: none;
    outline: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    box-shadow: 0 8px 28px rgba(0,0,0,0.17);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.74;
    transition: opacity 0.3s, background 0.3s, transform 0.2s;
}
#back-to-top:hover, #back-to-top:focus {
    opacity: 1;
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-5px) scale(1.08);
}

@media (max-width: 767px) {
    #back-to-top {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
        bottom: 18px;
        right: 18px;
    }
}


/* WhatsApp Confirmation Modal */
.whatsapp-modal {
    position: fixed;
    inset: 0;
    z-index: 10010;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.whatsapp-modal[hidden] {
    display: none;
}

.whatsapp-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 46, 68, 0.55);
    animation: whatsappModalFade 0.2s ease-out;
}

.whatsapp-modal-box {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    padding: 1.75rem;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(13, 34, 59, 0.25);
    animation: whatsappModalIn 0.25s ease-out;
}

.whatsapp-modal-text {
    color: var(--text);
    margin-bottom: 1rem;
    text-align: left;
    font-size: 0.95rem;
}

.whatsapp-modal-thanks {
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.whatsapp-modal-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
}

.whatsapp-modal-btn-cancel {
    background: transparent;
    color: var(--gray);
    border: 1px solid var(--gray);
}

.whatsapp-modal-btn-cancel:hover {
    background: var(--background);
    color: var(--text);
}

.whatsapp-modal-btn-confirm {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-modal-btn-confirm:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-modal-btn-confirm .icon-svg {
    width: 20px;
    height: 20px;
    fill: white;
    stroke: none;
    flex-shrink: 0;
}

@keyframes whatsappModalFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes whatsappModalIn {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hero: botões de ação e aviso WhatsApp */
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: none;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: var(--white);
}

.cta-button-secondary .icon-svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: none;
    flex-shrink: 0;
}

.whatsapp-disclaimer {
    max-width: 640px;
    margin: 1.25rem auto 0;
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

/* Formulário de triagem: grupos de radios/checkboxes */
.form-label {
    margin-bottom: 0.375rem;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.form-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.radio-label {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text);
    font-weight: 400;
    margin-bottom: 0;
}

.radio-label input[type="radio"] {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    min-width: 18px;
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.radio-label input[type="radio"]:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.form-options .checkbox-label {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0;
}

.form-note {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.form-conditional {
    margin-top: 0.75rem;
}
