/* ===== ESTILOS GLOBAIS ===== */

body {
    font-family: var(--font-family);
    font-size: var(--font-size-xl);
    color: #171B20;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 50%, #f9fafb 100%);
    line-height: var(--line-height-relaxed);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Padrão de fundo decorativo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg,
            rgba(45, 164, 153, 0.06) 0%,
            rgba(45, 182, 164, 0.04) 20%,
            transparent 50%),
        radial-gradient(circle at 15% 15%, rgba(45, 164, 153, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(45, 182, 164, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 100%, rgba(45, 164, 153, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundShift 20s ease-in-out infinite alternate;
}

@keyframes backgroundShift {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-3xl);
    position: relative;
    z-index: 1;
}

/* ===== ANIMAÇÕES ===== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(45, 164, 153, 0.2), 0 0 20px rgba(45, 164, 153, 0.1);
    }

    50% {
        box-shadow: 0 0 20px rgba(45, 164, 153, 0.4), 0 0 30px rgba(45, 164, 153, 0.2), 0 0 40px rgba(45, 164, 153, 0.1);
    }
}

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

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== BOTÕES ===== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    text-align: center;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #2da499 0%, #2db6a4 50%, #36c5b5 100%);
    color: white;
    box-shadow:
        0 4px 16px rgba(45, 164, 153, 0.3),
        0 2px 8px rgba(45, 164, 153, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 12px 28px rgba(45, 164, 153, 0.4),
        0 6px 16px rgba(45, 164, 153, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow:
        0 6px 16px rgba(45, 164, 153, 0.3),
        0 3px 8px rgba(45, 164, 153, 0.2);
}

.btn-secondary {
    background: rgba(45, 164, 153, 0.08);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(45, 164, 153, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 164, 153, 0.2);
}

.btn-secondary-feature {
    background: linear-gradient(135deg, rgba(45, 164, 153, 0.1) 0%, rgba(45, 182, 164, 0.12) 100%);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    backdrop-filter: blur(10px);
    padding: 16px 32px;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    box-shadow: 0 4px 12px rgba(45, 164, 153, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    text-align: center;
}

.btn-secondary-feature:hover {
    background: linear-gradient(135deg, rgba(45, 164, 153, 0.18) 0%, rgba(45, 182, 164, 0.22) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 164, 153, 0.25);
    border-color: var(--color-primary-hover);
}

.btn-secondary-feature:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 164, 153, 0.2);
}

.btn-secondary-feature .iconify {
    font-size: 20px;
    transition: transform var(--transition-normal);
}

.btn-secondary-feature:hover .iconify {
    transform: translateX(6px);
}

.btn-large {
    padding: 18px 40px;
    font-size: var(--font-size-2xl);
    border-radius: var(--radius-xl);
}

.btn-full {
    width: 100%;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2xl);
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-lg);
    transition: all var(--transition-normal);
    position: relative;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-normal);
}

.btn-link:hover {
    gap: var(--spacing-3xl);
    color: var(--color-primary-hover);
}

.btn-link:hover::after {
    width: 100%;
}

.btn-link .iconify {
    transition: transform var(--transition-normal);
}

.btn-link:hover .iconify {
    transform: translateX(4px);
}

/* ===== HEADER ===== */

.main-header {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(45, 164, 153, 0.2);
    border-radius: 50px;
    padding: 14px 28px;
    z-index: var(--z-sticky);
    animation: slideDown 0.5s var(--transition-normal);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 4px 16px rgba(45, 164, 153, 0.08),
        0 1px 4px rgba(45, 164, 153, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all var(--transition-normal);
}

/* Elementos mobile ocultos por padrão */
.mobile-nav-actions,
.mobile-nav-divider,
.mobile-nav-links {
    display: none;
}

.main-header.scrolled {
    background: transparent;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(45, 164, 153, 0.08);
    padding: 8px 24px;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-3xl);
    padding: 0;
    max-width: none;
    margin: 0;
}

.logo {
    position: relative;
    z-index: 2;
    transition: transform var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(45, 164, 153, 0.15));
    background: transparent;
}

.main-nav {
    display: none;
    gap: 8px;
}

.header-actions {
    display: none;
    gap: 12px;
}

.mobile-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-menu-button:hover {
    background: rgba(45, 164, 153, 0.08);
}

.mobile-menu-button:active {
    transform: scale(0.95);
}

/* Ícone hamburger customizado */
.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    position: relative;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #171B20;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger-icon span:nth-child(1) {
    width: 100%;
}

.hamburger-icon span:nth-child(2) {
    width: 80%;
    align-self: flex-end;
}

.hamburger-icon span:nth-child(3) {
    width: 100%;
}

/* Animação do hamburger quando ativo */
.mobile-menu-button[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.mobile-menu-button[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

.hero {
    padding: 140px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -40%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 164, 153, 0.2) 0%, rgba(45, 182, 164, 0.12) 30%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
    filter: blur(80px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 182, 164, 0.15) 0%, rgba(45, 164, 153, 0.08) 40%, transparent 70%);
    border-radius: 50%;
    animation: float 14s ease-in-out infinite reverse;
    filter: blur(70px);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    margin-bottom: 48px;
}

.hero-pre-title {
    display: inline-block;
    font-size: 12px;
    color: #2da499;
    background: linear-gradient(135deg, rgba(45, 164, 153, 0.15) 0%, rgba(45, 182, 164, 0.2) 50%, rgba(45, 164, 153, 0.15) 100%);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    margin-bottom: 32px;
    font-weight: var(--font-weight-semibold);
    animation: slideUp 0.6s var(--transition-normal) 0.2s backwards, pulse 3s ease-in-out 2s infinite;
    border: 1.5px solid rgba(45, 164, 153, 0.3);
    box-shadow:
        0 4px 16px rgba(45, 164, 153, 0.2),
        0 2px 8px rgba(45, 164, 153, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    max-width: 100%;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-pre-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

.hero-title {
    font-size: 40px;
    font-weight: var(--font-weight-bold);
    color: #171B20;
    line-height: 1.15;
    margin-bottom: 28px;
    animation: slideUp 0.6s var(--transition-normal) 0.3s backwards;
    letter-spacing: -0.03em;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-title br {
    display: none;
}

/* Linhas do título com animações escalonadas */
.hero-title-line1,
.hero-title-line2,
.hero-title-line3,
.hero-title-line4 {
    display: block;
    animation: slideUp 0.6s var(--transition-normal) backwards;
}

.hero-title-line1 {
    animation-delay: 0.3s;
    margin-bottom: -5px;
    font-size: 29px;
}

.hero-title-line2 {
    animation-delay: 0.4s;
    background: linear-gradient(135deg, #2da499 0%, #2db6a4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--font-weight-bold);
}

.hero-title-line3 {
    animation-delay: 0.5s;
    margin-top: 12px;
    margin-bottom: -5px;
    font-size: 35px;
}

.hero-title-line4 {
    animation-delay: 0.6s;
    background: linear-gradient(135deg, #2da499 0%, #2db6a4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--font-weight-bold);
    font-size: 28px;
}

.hero-subtitle {
    font-size: 16px;
    color: #4b5563;
    line-height: 2.65;
    margin-bottom: 36px;
    animation: slideUp 0.6s var(--transition-normal) 0.7s backwards;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    margin-top: 20px;
}

.hero .btn-primary {
    margin-bottom: 20px;
    animation: slideUp 0.6s var(--transition-normal) 0.8s backwards;
    box-shadow:
        0 12px 32px rgba(45, 164, 153, 0.35),
        0 6px 16px rgba(45, 164, 153, 0.25);
    font-size: 17px;
    padding: 18px 40px;
    font-weight: 600;
}

.hero .btn-primary:hover {
    box-shadow:
        0 16px 48px rgba(45, 164, 153, 0.45),
        0 8px 24px rgba(45, 164, 153, 0.35);
}

.hero-microtext {
    display: block;
    font-size: 13px;
    color: #6b7280;
    animation: slideUp 0.6s var(--transition-normal) 0.9s backwards;
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-visual {
    width: 100%;
    animation: float 6s ease-in-out infinite, slideUp 0.8s var(--transition-normal) 1s backwards;
    position: relative;
    margin-top: 20px;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(45, 164, 153, 0.12) 0%, rgba(45, 182, 164, 0.08) 40%, transparent 70%);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
    filter: blur(40px);
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.18),
        0 16px 40px rgba(45, 164, 153, 0.25),
        0 8px 20px rgba(45, 164, 153, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-visual img:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.22),
        0 20px 50px rgba(45, 164, 153, 0.3),
        0 12px 28px rgba(45, 164, 153, 0.2),
        0 6px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* ===== FEATURES SECTION ===== */

.features-section {
    padding: 100px 0 120px;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(45, 164, 153, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(45, 182, 164, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.feature-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 40px 28px;
    margin-bottom: 40px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.06),
        0 4px 16px rgba(45, 164, 153, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(229, 231, 233, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 164, 153, 0.08), transparent);
    transition: left 0.8s ease;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 251, 252, 0.9));
    border-radius: 28px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.12),
        0 12px 32px rgba(45, 164, 153, 0.2),
        0 6px 16px rgba(45, 164, 153, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(45, 164, 153, 0.3);
}

.feature-content {
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    color: #171B20;
    line-height: 1.35;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.feature-title .highlight-text {
    background: linear-gradient(135deg, #267A72 0%, #2da499 40%, #2db6a4 70%, #36c5b5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--font-weight-bold);
    display: inline-block;
    position: relative;
}

.feature-title .highlight-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2da499 0%, #2db6a4 50%, #36c5b5 100%);
    opacity: 0.2;
    border-radius: 2px;
}

.section-title .highlight-text {
    background: linear-gradient(135deg, #267A72 0%, #2da499 40%, #2db6a4 70%, #36c5b5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--font-weight-bold);
    display: inline-block;
    position: relative;
}

.section-title .highlight-text::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2da499 0%, #2db6a4 50%, #36c5b5 100%);
    opacity: 0.2;
    border-radius: 2px;
}

.feature-content p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 16px;
}

.feature-intro {
    font-size: 17px;
    color: #374151;
    font-weight: var(--font-weight-medium);
    line-height: 1.6;
    margin-bottom: 20px !important;
}

.feature-highlight {
    font-size: 16px;
    color: #6b7280;
    font-style: italic;
    line-height: 1.7;
    padding-left: 16px;
    border-left: 3px solid rgba(45, 164, 153, 0.3);
    margin-bottom: 20px !important;
}

.feature-conclusion {
    font-size: 17px;
    color: #171B20;
    font-weight: var(--font-weight-medium);
    line-height: 1.7;
    margin-bottom: 24px !important;
}

.feature-question {
    font-size: 16px;
    color: #2da499;
    font-style: italic;
    font-weight: var(--font-weight-medium);
    line-height: 1.6;
    padding: 12px 20px;
    background: rgba(45, 164, 153, 0.08);
    border-left: 3px solid #2da499;
    border-radius: 0 8px 8px 0;
    margin-bottom: 16px !important;
}

.text-emphasis {
    color: #171B20;
    font-weight: var(--font-weight-semibold);
}

.text-primary {
    color: #2da499;
    font-weight: var(--font-weight-semibold);
}

.mobile-break {
    display: none;
}

.feature-list {
    margin-bottom: 32px;
    display: grid;
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: #374151;
    background: linear-gradient(135deg, rgba(45, 164, 153, 0.06) 0%, rgba(45, 182, 164, 0.08) 100%);
    padding: 16px 20px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(45, 164, 153, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2da499, #2db6a4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-list li:hover {
    background: linear-gradient(135deg, rgba(45, 164, 153, 0.12) 0%, rgba(45, 182, 164, 0.15) 100%);
    transform: translateX(8px);
    box-shadow:
        0 4px 16px rgba(45, 164, 153, 0.15),
        0 2px 8px rgba(45, 164, 153, 0.08);
    border-color: rgba(45, 164, 153, 0.2);
}

.feature-list li:hover::before {
    opacity: 1;
}

.feature-list li .iconify {
    color: #2da499;
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
    background: rgba(45, 164, 153, 0.15);
    padding: 6px;
    border-radius: 8px;
}

.anamnese-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.anamnese-categories span {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(45, 164, 153, 0.12) 0%, rgba(45, 182, 164, 0.15) 100%);
    color: #18635E;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
    border: 1.5px solid rgba(45, 164, 153, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 2px 8px rgba(45, 164, 153, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.anamnese-categories span:hover {
    background: linear-gradient(135deg, rgba(45, 164, 153, 0.2) 0%, rgba(45, 182, 164, 0.25) 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 6px 20px rgba(45, 164, 153, 0.25),
        0 3px 10px rgba(45, 164, 153, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(45, 164, 153, 0.35);
    color: #267A72;
}

.feature-visual {
    width: 100%;
    position: relative;
    z-index: 1;
}

.feature-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(45, 164, 153, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-visual img:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.15),
        0 12px 32px rgba(45, 164, 153, 0.2),
        0 6px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.9);
}

/* ===== PRICING SECTION ===== */

.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 50%, #f9fafb 100%);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 20%, rgba(45, 164, 153, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(45, 182, 164, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(45, 164, 153, 0.03) 0%, transparent 60%);
    pointer-events: none;
    animation: backgroundShift 25s ease-in-out infinite alternate;
}

.section-title {
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    color: #171B20;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.section-subtitle {
    font-size: 16px;
    color: #4b5563;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #4b5563;
    font-weight: var(--font-weight-medium);
    padding: 12px 16px;
    background: rgba(45, 164, 153, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(45, 164, 153, 0.15);
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.15),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.25),
        0 1px 3px rgba(0, 0, 0, 0.15);
}

input:checked+.slider {
    background: linear-gradient(135deg, #2da499 0%, #2db6a4 100%);
    box-shadow:
        inset 0 2px 8px rgba(45, 164, 153, 0.4),
        0 2px 8px rgba(45, 164, 153, 0.3),
        0 1px 3px rgba(45, 164, 153, 0.2);
}

input:checked+.slider:before {
    transform: translateX(20px);
    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.3),
        0 1px 4px rgba(0, 0, 0, 0.2);
}

.slider.round {
    border-radius: var(--radius-full);
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
    overflow: visible;
    padding-top: 24px;
}

.plan-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(45, 164, 153, 0.2);
    border-radius: 28px;
    padding: 40px 28px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(45, 164, 153, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2da499 0%, #2db6a4 50%, #36c5b5 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.plan-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(45, 164, 153, 0.4), rgba(45, 182, 164, 0.4));
    border-radius: 28px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.plan-card.popular {
    border-color: #2da499;
    background: linear-gradient(135deg, #ffffff 0%, #f0fffe 100%);
    box-shadow:
        0 16px 48px rgba(45, 164, 153, 0.25),
        0 8px 24px rgba(45, 164, 153, 0.15),
        0 4px 12px rgba(45, 164, 153, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: scale(1.03);
    position: relative;
    overflow: visible;
    margin-top: 24px;
}

.plan-card.popular::before {
    opacity: 0;
    height: 0;
}

.plan-card.popular:active {
    background: #ffffff;
    transform: translateY(-8px) scale(1.02);
}

@media (hover: hover) and (pointer: fine) {
    .plan-card:hover::before {
        opacity: 1;
    }

    .plan-card:hover::after {
        opacity: 0.5;
    }

    .plan-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow:
            0 24px 64px rgba(0, 0, 0, 0.12),
            0 12px 32px rgba(45, 164, 153, 0.25),
            0 6px 16px rgba(45, 164, 153, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
        border-color: rgba(45, 164, 153, 0.4);
    }

    .plan-card.popular:hover {
        transform: translateY(-12px) scale(1.05);
        background: #ffffff;
    }
}

@media (hover: none) and (pointer: coarse) {

    .plan-card:active::before,
    .plan-card:active::after {
        opacity: 0;
    }

    .plan-card:active {
        transform: none;
        border-color: rgba(45, 164, 153, 0.2);
        box-shadow:
            0 12px 40px rgba(0, 0, 0, 0.08),
            0 4px 16px rgba(45, 164, 153, 0.08),
            0 2px 8px rgba(0, 0, 0, 0.04),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    .plan-card.popular:active {
        transform: none;
        background: linear-gradient(135deg, #ffffff 0%, #f0fffe 100%);
    }
}

.popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: linear-gradient(135deg, #2da499 0%, #2db6a4 50%, #36c5b5 100%);
    color: white;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
    box-shadow:
        0 6px 20px rgba(45, 164, 153, 0.4),
        0 3px 12px rgba(45, 164, 153, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: pulse 3s infinite, float 4s ease-in-out infinite;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.plan-name {
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    color: #171B20;
    margin-bottom: 8px;
}

.plan-description {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 24px;
    line-height: 1.5;
}

.plan-price {
    font-size: 48px;
    font-weight: var(--font-weight-bold);
    color: #2da499;
    margin-bottom: 24px;
    line-height: 1;
}

.plan-period {
    font-size: 16px;
    font-weight: var(--font-weight-normal);
    color: #6b7280;
}

.plan-card .btn {
    margin-bottom: 28px;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #374151;
    padding: 8px 0;
}

.plan-features li .iconify {
    color: #2da499;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    background: linear-gradient(135deg, rgba(45, 164, 153, 0.2) 0%, rgba(45, 182, 164, 0.25) 100%);
    padding: 6px;
    border-radius: 50%;
    box-shadow:
        0 2px 8px rgba(45, 164, 153, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.plan-features li:hover .iconify {
    transform: scale(1.15) rotate(10deg);
    box-shadow:
        0 4px 12px rgba(45, 164, 153, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* ===== SECURITY SECTION ===== */

.security-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 50%, #ffffff 100%);
    position: relative;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(45, 164, 153, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45, 182, 164, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.security-content {
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.security-content .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.security-content p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.security-features {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.security-features li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-size: 15px;
    color: #374151;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    border: 1.5px solid rgba(45, 164, 153, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.04),
        0 2px 8px rgba(45, 164, 153, 0.06);
    position: relative;
    overflow: hidden;
}

.security-features li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2da499, #2db6a4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.security-features li:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f0fffe 100%);
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 12px 32px rgba(45, 164, 153, 0.18),
        0 6px 16px rgba(45, 164, 153, 0.12),
        0 3px 8px rgba(0, 0, 0, 0.06);
    border-color: rgba(45, 164, 153, 0.3);
}

.security-features li:hover::before {
    opacity: 1;
}

.security-features li .iconify {
    color: #2da499;
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
    background: linear-gradient(135deg, rgba(45, 164, 153, 0.15) 0%, rgba(45, 182, 164, 0.2) 100%);
    padding: 12px;
    border-radius: 12px;
    box-shadow:
        0 4px 12px rgba(45, 164, 153, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.security-visual {
    width: 100%;
}

.security-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.12),
        0 10px 28px rgba(45, 164, 153, 0.15),
        0 4px 14px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.security-visual img:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow:
        0 32px 90px rgba(0, 0, 0, 0.15),
        0 14px 36px rgba(45, 164, 153, 0.2),
        0 6px 18px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.9);
}

/* ===== FINAL CTA ===== */

.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #267A72 0%, #2da499 50%, #2db6a4 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    color: white;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.final-cta-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .btn-primary {
    background: white;
    color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.final-cta .btn-primary::before {
    background: rgba(45, 164, 153, 0.1);
}

.final-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

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

.main-footer-bottom {
    padding: 70px 0 50px;
    background: linear-gradient(135deg, #0f1419 0%, #1a1d23 50%, #141414 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.main-footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(45, 164, 153, 0.5) 30%, rgba(45, 182, 164, 0.5) 70%, transparent 100%);
    box-shadow: 0 0 20px rgba(45, 164, 153, 0.3);
}

.main-footer-bottom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(45, 164, 153, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(45, 182, 164, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.main-footer-bottom .container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    transition: all var(--transition-normal);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-normal);
}

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

.footer-links a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 22px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2da499 0%, #2db6a4 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a:hover {
    color: white;
    transform: translateY(-6px) scale(1.1);
    box-shadow:
        0 12px 32px rgba(45, 164, 153, 0.4),
        0 6px 16px rgba(45, 164, 153, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-copy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

/* ===== RESPONSIVIDADE - TABLET ===== */

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
        margin-top: 80px;
    }

    .main-header {
        left: 40px;
        right: 40px;
        overflow: visible;
    }

    .main-header .container {
        flex-wrap: nowrap;
    }

    .mobile-menu-button {
        display: none;
    }

    .main-nav {
        display: flex;
        gap: 4px;
        max-height: none;
        opacity: 1;
        overflow: visible;
        padding: 0;
    }

    /* Oculta elementos mobile no desktop */
    .mobile-nav-actions,
    .mobile-nav-divider {
        display: none !important;
    }

    .mobile-nav-links {
        display: flex !important;
        flex-direction: row;
        gap: 4px;
        width: auto;
    }

    .mobile-nav-links a {
        color: #171B20;
        font-size: 15px;
        font-weight: var(--font-weight-medium);
        transition: all var(--transition-normal);
        padding: 10px 16px;
        border-radius: var(--radius-lg);
        position: relative;
        background: transparent;
        animation: none;
    }

    .mobile-nav-links a:hover {
        color: #2da499;
        background: rgba(45, 164, 153, 0.1);
        transform: none;
    }

    .header-actions {
        display: flex;
        gap: 12px;
    }

    .hero {
        min-height: 85vh;
        padding: 80px 0 100px;
        background: transparent;
    }

    .hero::before {
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
    }

    .hero::after {
        display: none;
    }

    .hero-pre-title {
        font-size: 13px;
        padding: 10px 20px;
    }

    .hero-title {
        font-size: 52px;
        gap: 0;
        line-height: 1.2;
        letter-spacing: -0.02em;
    }

    .hero-title-line1 {
        display: inline;
        font-size: 52px;
        font-weight: 600;
        color: #171B20;
    }

    .hero-title-line2 {
        display: inline;
        font-size: 48px;
        font-weight: 700;

    }

    .hero-title-line2::before {
        content: ' ';
    }

    .hero-title-line3 {
        display: inline;
        font-size: 52px;
        font-weight: 600;
        color: #171B20;
        margin-top: 24px;
    }

    .hero-title-line4 {
        display: inline;
        font-size: 48px;
        font-weight: 700;
    }

    .hero-title-line4::before {
        content: ' ';
    }

    .hero-subtitle {
        font-size: 19px;
        line-height: 1.7;
    }

    .hero .btn-primary {
        font-size: var(--font-size-2xl);
        padding: 18px 40px;
    }

    .hero-visual {
        margin-top: 0;
    }

    .feature-item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
        padding: 48px 40px;
    }

    .feature-item.reverse {
        direction: rtl;
    }

    .feature-item.reverse>* {
        direction: ltr;
    }

    .feature-content {
        margin-bottom: 0;
    }

    .feature-title {
        font-size: 32px;
    }

    .feature-title br {
        display: none;
    }

    .feature-title .highlight-text {
        font-size: 34px;
    }

    .section-title {
        font-size: 40px;
    }

    .section-title br {
        display: none;
    }

    .section-title .highlight-text {
        font-size: 42px;
    }

    .pricing-cards {
        flex-direction: row;
        gap: 24px;
        padding-top: 24px;
    }

    .plan-card {
        flex: 1;
        padding: 40px 32px;
    }

    .security-section .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
    }

    .security-content {
        margin-bottom: 0;
    }

    .security-content .section-title,
    .security-content p {
        text-align: left;
        margin-left: 0;
    }

    .security-features {
        grid-template-columns: 1fr 1fr;
    }

    .final-cta-title {
        font-size: 40px;
    }

    .main-footer-bottom .container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ===== RESPONSIVIDADE - DESKTOP ===== */

@media (min-width: 1024px) {
    .container {
        padding: 0 60px;
    }

    .main-header {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        max-width: 1300px;
        width: calc(100% - 120px);
    }

    .logo img {
        height: 40px;
    }

    .main-nav {
        gap: 8px;
    }

    .hero {
        padding: 0;
        height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero .container {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 72px;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 80px 60px;
        box-sizing: border-box;
    }

    .hero-content {
        text-align: left;
        margin-bottom: 0;
    }

    .hero-pre-title {
        font-size: 14px;
    }

    .hero-title {
        font-size: 56px;
        margin-bottom: 32px;
        line-height: 1.15;
        letter-spacing: -0.02em;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .hero-subtitle {
        font-size: 19px;
        margin-left: 0;
        margin-right: 0;
    }

    .features-section {
        padding: 120px 0;
    }

    .feature-item {
        gap: 64px;
        padding: 56px 48px;
        margin-bottom: 48px;
    }

    .feature-title {
        font-size: 36px;
    }

    .feature-title br {
        display: none;
    }

    .feature-title .highlight-text {
        font-size: 38px;
    }

    .pricing-section {
        padding: 120px 0;
    }

    .section-title {
        font-size: 48px;
    }

    .section-title br {
        display: none;
    }

    .section-title .highlight-text {
        font-size: 50px;
    }

    .plan-card {
        padding: 48px 40px;
    }

    .security-section {
        padding: 120px 0;
    }

    .security-features {
        grid-template-columns: 1fr;
    }

    .final-cta {
        padding: 100px 0;
    }

    .final-cta-title {
        font-size: 48px;
    }

    .final-cta-subtitle {
        font-size: 19px;
    }
}

/* ===== UTILITÁRIOS ===== */

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

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* ===== MENU MOBILE ESTILIZADO ===== */

@media (max-width: 767px) {
    .hero-pre-title {
        margin-top: -15px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.25;
        margin-bottom: 24px;
        padding: 0 8px;
        font-weight: 800;
        letter-spacing: -0.03em;
    }

    .hero-title-line1 {
        font-size: 28px;
        font-weight: 700;
        background: linear-gradient(135deg, #141414 0%, #2c3e50 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-title-line2 {
        font-size: 34px;
        font-weight: 800;
        background: linear-gradient(135deg, #267A72 0%, #2da499 50%, #2db6a4 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 2px 8px rgba(45, 164, 153, 0.15);
    }

    .hero-title-line3 {
        font-size: 28px;
        font-weight: 700;
        background: linear-gradient(135deg, #141414 0%, #2c3e50 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-title-line4 {
        font-size: 34px;
        font-weight: 800;
        background: linear-gradient(135deg, #267A72 0%, #2da499 50%, #2db6a4 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 2px 8px rgba(45, 164, 153, 0.15);
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
        padding: 0 8px;
    }

    /* Títulos das Features no Mobile */
    .feature-title {
        font-size: 28px;
        line-height: 1.35;
        font-weight: 800;
        letter-spacing: -0.02em;
        color: #141414;
        margin-bottom: 24px;
    }

    .feature-title br {
        display: block;
        content: "";
        margin-bottom: 4px;
    }

    .feature-title .highlight-text {
        display: block;
        background: linear-gradient(135deg, #267A72 0%, #2da499 50%, #2db6a4 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 900;
        font-size: 30px;
        line-height: 1.2;
        margin-top: 4px;
    }

    /* Título da Seção de Preços no Mobile */
    .section-title {
        font-size: 30px;
        line-height: 1.35;
        font-weight: 800;
        letter-spacing: -0.02em;
        color: #141414;
        padding: 0 12px;
        margin-bottom: 20px;
    }

    .section-title br {
        display: block;
        content: "";
        margin-bottom: 6px;
    }

    .section-title .highlight-text {
        display: block;
        background: linear-gradient(135deg, #267A72 0%, #2da499 50%, #2db6a4 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 900;
        font-size: 32px;
        line-height: 1.2;
        margin-top: 6px;
    }

    /* Título da Seção de Segurança no Mobile */
    .security-content .section-title {
        font-size: 28px;
        line-height: 1.35;
        font-weight: 800;
        letter-spacing: -0.02em;
        color: #141414;
        padding: 0 12px;
        margin-bottom: 24px;
    }

    .security-content .section-title .highlight-text {
        display: block;
        background: linear-gradient(135deg, #267A72 0%, #2da499 50%, #2db6a4 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 900;
        font-size: 30px;
        line-height: 1.2;
        margin-top: 6px;
    }

    /* Título Final CTA no Mobile */
    .final-cta-title {
        font-size: 30px;
        line-height: 1.3;
        font-weight: 800;
        letter-spacing: -0.02em;
        padding: 0 12px;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    }

    /* Títulos dos Cards de Planos no Mobile */
    .plan-name {
        font-size: 32px;
        font-weight: 800;
        letter-spacing: -0.02em;
        background: linear-gradient(135deg, #267A72 0%, #2da499 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .plan-description {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Melhorias de legibilidade geral no mobile */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }

    /* Botões de feature no mobile */
    .btn-secondary-feature {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        font-size: 15px;
        text-align: center;
        background: var(--color-bg-gradient-primary);
        color: white;
        border: none;
        box-shadow: 0 6px 20px rgba(45, 164, 153, 0.3);
        line-height: 1.4;
        white-space: normal;
        min-height: 52px;
    }

    .btn-secondary-feature:hover {
        background: var(--color-bg-gradient-primary);
        box-shadow: 0 8px 24px rgba(45, 164, 153, 0.35);
    }

    .btn-secondary-feature .iconify {
        flex-shrink: 0;
    }

    /* Textos otimizados para mobile */
    .feature-intro {
        font-size: 16px;
        margin-bottom: 18px !important;
    }

    .feature-highlight {
        font-size: 15px;
        padding-left: 14px;
        margin-bottom: 18px !important;
    }

    .feature-conclusion {
        font-size: 16px;
        margin-bottom: 20px !important;
    }

    .feature-question {
        font-size: 15px;
        padding: 12px 16px;
        margin-bottom: 14px !important;
    }

    .feature-content p {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 14px;
    }

    .mobile-break {
        display: block;
    }

    .section-subtitle {
        font-size: 15px;
        line-height: 1.7;
    }

    .final-cta-subtitle {
        font-size: 16px;
        line-height: 1.7;
    }

    /* Header expandido no mobile */
    .main-header {
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 12px 20px;
    }

    .main-header.menu-open {
        border-radius: 24px;
    }

    .main-header .container {
        flex-wrap: wrap;
        align-items: center;
        padding: 0;
        gap: 0;
    }

    /* Logo e botão hamburger na mesma linha */
    .main-header .logo {
        flex-shrink: 0;
        order: 1;
        display: flex;
        align-items: center;
    }

    .main-header .logo img {
        height: 28px;
    }

    .main-header .mobile-menu-button {
        flex-shrink: 0;
        order: 2;
        margin-left: auto;
    }

    /* Header actions oculto no mobile */
    .main-header .header-actions {
        display: none !important;
    }

    /* Menu mobile dentro do header */
    .main-nav {
        display: flex;
        flex-direction: column;
        width: 100%;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0 0;
        gap: 0;
        order: 3;
    }

    .main-nav.active {
        max-height: 400px;
        opacity: 1;
        padding: 24px 0 12px;
        gap: 20px;
    }

    /* Botões de ação no mobile */
    .mobile-nav-actions {
        display: flex !important;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        animation: slideDown 0.3s ease-out 0.1s backwards;
    }

    .mobile-nav-actions .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
        font-weight: var(--font-weight-semibold);
    }

    /* Divisor */
    .mobile-nav-divider {
        display: block !important;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(45, 164, 153, 0.3) 50%, transparent 100%);
        border: none;
        margin: 0;
        animation: fadeIn 0.3s ease-out 0.2s backwards;
    }

    /* Links de navegação */
    .mobile-nav-links {
        display: flex !important;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .mobile-nav-links a {
        font-size: 16px;
        font-weight: var(--font-weight-medium);
        color: #171B20;
        padding: 12px 20px;
        border-radius: var(--radius-lg);
        transition: all var(--transition-normal);
        text-align: center;
        background: rgba(45, 164, 153, 0.05);
        animation: slideDown 0.3s ease-out backwards;
    }

    .mobile-nav-links a:nth-child(1) {
        animation-delay: 0.25s;
    }

    .mobile-nav-links a:nth-child(2) {
        animation-delay: 0.3s;
    }

    .mobile-nav-links a:nth-child(3) {
        animation-delay: 0.35s;
    }

    .mobile-nav-links a:hover,
    .mobile-nav-links a:active {
        background: rgba(45, 164, 153, 0.15);
        color: #2da499;
        transform: translateX(4px);
    }
}

/* ===== ACESSIBILIDADE ===== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===== SCROLLBAR CUSTOMIZADA ===== */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-md);
}

::-webkit-scrollbar-thumb {
    background: var(--color-border-primary);
    border-radius: var(--radius-md);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-muted);
}

@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 3px;
        height: 3px;
    }
}

/* ===== MELHORIAS VISUAIS EXTRAS ===== */

/* Smooth scroll para iOS */
* {
    -webkit-overflow-scrolling: touch;
}

/* Melhoria no tap em dispositivos móveis */
.btn,
.main-nav a,
.footer-social a,
.mobile-menu-button {
    -webkit-tap-highlight-color: rgba(45, 164, 153, 0.1);
    touch-action: manipulation;
}

/* Loader de imagens placeholder */
img {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
}

/* Efeito de seleção customizado */
::selection {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

::-moz-selection {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

/* Micro-interações nos ícones */
.iconify {
    transition: transform var(--transition-normal);
}

.feature-list li:hover .iconify,
.security-features li:hover .iconify,
.plan-features li:hover .iconify {
    transform: scale(1.15) rotate(5deg);
}

/* Efeito de typing no pre-title */
.hero-pre-title {
    position: relative;
    overflow: hidden;
}

/* Melhoria de performance com will-change */
.btn,
.plan-card,
.feature-item,
.hero-visual img {
    will-change: transform;
}

.btn:not(:hover):not(:active),
.plan-card:not(:hover),
.feature-item:not(:hover),
.hero-visual img:not(:hover) {
    will-change: auto;
}

/* Efeito de foco mais bonito para acessibilidade */
*:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Melhoria no contraste em modo dark (se suportado) */
@media (prefers-color-scheme: dark) {
    body::before {
        opacity: 0.5;
    }
}

/* Otimização para telas de alta densidade */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Pequenos ajustes para telas muito pequenas */
@media (max-width: 380px) {
    .main-header {
        margin: 10px 10px 0;
        padding: 8px 16px;
    }

    .main-header.scrolled {
        padding: 6px 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-title-line1,
    .hero-title-line3 {
        font-size: 25px;
    }

    .hero-title-line2,
    .hero-title-line4 {
        font-size: 30px;
    }

    .feature-title {
        font-size: 24px;
    }

    .feature-title .highlight-text {
        font-size: 26px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-title .highlight-text {
        font-size: 28px;
    }

    .security-content .section-title {
        font-size: 24px;
    }

    .security-content .section-title .highlight-text {
        font-size: 26px;
    }

    .final-cta-title {
        font-size: 26px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: var(--font-size-xl);
    }

    .btn-secondary-feature {
        padding: 14px 16px;
        font-size: 14px;
        line-height: 1.5;
        min-height: 50px;
        gap: 8px;
    }

    .feature-intro {
        font-size: 15px;
    }

    .feature-highlight {
        font-size: 14px;
        padding-left: 12px;
    }

    .feature-conclusion {
        font-size: 15px;
    }

    .feature-question {
        font-size: 14px;
        padding: 10px 14px;
    }

    .feature-content p {
        font-size: 14px;
    }

    .container {
        padding: 0 20px;
    }
}

/* Animação suave ao carregar a página */
@keyframes pageLoad {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

body {
    animation: pageLoad 0.6s var(--transition-normal);
}

/* Efeito de hover nos cards com delay escalonado */
.pricing-cards .plan-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-cards .plan-card:nth-child(2) {
    animation-delay: 0.2s;
}

/* Melhoria de contraste para modo high contrast */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid var(--color-primary);
    }

    .btn-secondary {
        border-width: 3px;
    }
}

/* Animação sutil de entrada para elementos */
.feature-list li,
.security-features li,
.plan-features li {
    animation: slideUp 0.4s var(--transition-normal) backwards;
}

.feature-list li:nth-child(1),
.plan-features li:nth-child(1) {
    animation-delay: 0.05s;
}

.feature-list li:nth-child(2),
.plan-features li:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-list li:nth-child(3),
.plan-features li:nth-child(3) {
    animation-delay: 0.15s;
}

.feature-list li:nth-child(4),
.plan-features li:nth-child(4) {
    animation-delay: 0.2s;
}

.feature-list li:nth-child(5),
.plan-features li:nth-child(5) {
    animation-delay: 0.25s;
}

.feature-list li:nth-child(6),
.plan-features li:nth-child(6) {
    animation-delay: 0.3s;
}

.feature-list li:nth-child(7),
.plan-features li:nth-child(7) {
    animation-delay: 0.35s;
}

/* ===== ESTILOS DA PÁGINA DE TERMOS ===== */

.terms-section {
    padding: var(--spacing-4xl) 0;
    background: #ffffff;
    min-height: calc(100vh - 200px);
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.terms-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: #171B20;
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    line-height: var(--line-height-tight);
}

.terms-intro {
    background: rgba(45, 164, 153, 0.08);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-3xl);
    border-left: 4px solid var(--color-primary);
}

.terms-intro p {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    color: #171B20;
}

.terms-intro p:last-child {
    margin-bottom: 0;
}

.terms-intro strong {
    color: #171B20;
    font-weight: 600;
}

.terms-section-content {
    margin-bottom: var(--spacing-3xl);
}

.terms-section-content h2 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: #171B20;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 3px solid var(--color-primary);
    margin-top: var(--spacing-2xl);
}

.terms-section-content p {
    margin-bottom: var(--spacing-lg);
    font-size: 17px;
    line-height: 1.8;
    color: #2c3e50;
}

.terms-section-content ul {
    margin-left: 0;
    margin-bottom: var(--spacing-xl);
    padding-left: 0;
    list-style: none;
}

.terms-section-content li {
    margin-bottom: var(--spacing-md);
    font-size: 17px;
    line-height: 1.8;
    color: #2c3e50;
    position: relative;
    padding-left: var(--spacing-2xl);
}

.terms-section-content li::before {
    content: '•';
    color: var(--color-primary);
    font-weight: bold;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -2px;
}

.terms-section-content strong {
    font-weight: 600;
    color: #171B20;
}

.terms-contact {
    background: linear-gradient(135deg, rgba(45, 164, 153, 0.12), rgba(45, 182, 164, 0.12));
    padding: var(--spacing-3xl);
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 2px solid rgba(45, 164, 153, 0.3);
    margin-top: var(--spacing-4xl);
}

.terms-contact p {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-xl);
    line-height: var(--line-height-relaxed);
    color: #171B20;
    font-weight: 500;
}

.terms-contact p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: #000000;
    font-size: var(--font-size-base);
    font-weight: 400;
}

/* Responsividade para termos */
@media (max-width: 768px) {
    .terms-section {
        padding: var(--spacing-2xl) 0;
    }

    .terms-content {
        padding: 0 var(--spacing-lg);
    }

    .terms-title {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--spacing-2xl);
    }

    .terms-intro {
        padding: var(--spacing-xl);
    }

    .terms-section-content h2 {
        font-size: var(--font-size-xl);
        margin-top: var(--spacing-xl);
    }

    .terms-section-content p,
    .terms-section-content li {
        font-size: 16px;
    }

    .terms-section-content li {
        padding-left: var(--spacing-xl);
    }

    .terms-contact {
        padding: var(--spacing-2xl);
    }

    .terms-contact p {
        font-size: var(--font-size-lg);
    }
}