/* ==========================================================================
   TLD Cloud Security Maturity - Main Styles
   Version: 1.0.0
   ========================================================================== */

/* ==========================================================================
   Google Fonts
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   CSS Variables - Paleta de Cores TLD
   ========================================================================== */
:root {
    /* Cores Primárias */
    --tld-blue-light: #2CA5FF;
    --tld-blue-medium: #0A5299;
    --tld-blue-dark: #011028;
    --tld-gray: #BFBFBF;
    --tld-gray-light: #F4F4F4;
    
    /* Cores Derivadas */
    --tld-blue-glow: rgba(44, 165, 255, 0.3);
    --tld-blue-glow-strong: rgba(44, 165, 255, 0.6);
    --tld-gradient-primary: linear-gradient(135deg, var(--tld-blue-dark) 0%, var(--tld-blue-medium) 100%);
    --tld-gradient-accent: linear-gradient(135deg, var(--tld-blue-light) 0%, var(--tld-blue-medium) 100%);
    --tld-gradient-hero: linear-gradient(180deg, var(--tld-blue-dark) 0%, #021a3d 50%, var(--tld-blue-medium) 100%);
    
    /* Tipografia */
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Espaçamento */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Sombras */
    --shadow-glow: 0 0 40px var(--tld-blue-glow);
    --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--tld-blue-dark);
    color: var(--tld-gray-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--tld-blue-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--tld-gray-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.tld-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (max-width: 768px) {
    .tld-container {
        padding: 0 4px;
    }
}

@media (max-width: 400px) {
    .tld-container {
        padding: 0 2px;
    }
}

.tld-section {
    padding: var(--space-xl) 0;
    position: relative;
}

/* ==========================================================================
   Header
   ========================================================================== */
.tld-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    background: rgba(1, 16, 40, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(44, 165, 255, 0.1);
    transition: all var(--transition-medium);
}

.tld-header.scrolled {
    padding: var(--space-xs) 0;
    background: rgba(1, 16, 40, 0.95);
}

.tld-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tld-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.tld-logo img {
    height: 45px;
    width: auto;
}

.tld-logo__text {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--tld-gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tld-nav {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.tld-nav__link {
    color: var(--tld-gray);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.tld-nav__link:hover {
    color: var(--tld-blue-light);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.tld-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--tld-gradient-hero);
    overflow: hidden;
}

/* Animated Background Grid */
.tld-hero__grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(44, 165, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(44, 165, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Cyber Lines Animation */
.tld-hero__cyber-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.tld-cyber-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--tld-blue-light), transparent);
    opacity: 0.3;
    animation: cyberLineMove 8s linear infinite;
}

.tld-cyber-line:nth-child(1) { top: 20%; animation-delay: 0s; width: 100px; }
.tld-cyber-line:nth-child(2) { top: 40%; animation-delay: 2s; width: 150px; }
.tld-cyber-line:nth-child(3) { top: 60%; animation-delay: 4s; width: 80px; }
.tld-cyber-line:nth-child(4) { top: 80%; animation-delay: 1s; width: 120px; }
.tld-cyber-line:nth-child(5) { top: 30%; animation-delay: 3s; width: 100px; }

@keyframes cyberLineMove {
    0% { left: -200px; opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { left: 100%; opacity: 0; }
}

/* Floating Particles */
.tld-hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.tld-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--tld-blue-light);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s infinite ease-in-out;
}

.tld-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.tld-particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.tld-particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 14s; }
.tld-particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 16s; }
.tld-particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 20s; }
.tld-particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 13s; }
.tld-particle:nth-child(7) { left: 70%; animation-delay: 2s; animation-duration: 17s; }
.tld-particle:nth-child(8) { left: 80%; animation-delay: 4s; animation-duration: 15s; }
.tld-particle:nth-child(9) { left: 90%; animation-delay: 1s; animation-duration: 19s; }
.tld-particle:nth-child(10) { left: 95%; animation-delay: 3s; animation-duration: 11s; }

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 0.6;
        transform: translateY(10vh) scale(1);
    }
    100% {
        transform: translateY(-10vh) scale(0);
        opacity: 0;
    }
}

/* Glowing Orbs */
.tld-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: orbGlow 8s ease-in-out infinite;
}

.tld-hero__orb--1 {
    width: 400px;
    height: 400px;
    background: var(--tld-blue-light);
    top: 10%;
    right: -100px;
    animation-delay: 0s;
}

.tld-hero__orb--2 {
    width: 300px;
    height: 300px;
    background: var(--tld-blue-medium);
    bottom: 20%;
    left: -50px;
    animation-delay: 2s;
}

.tld-hero__orb--3 {
    width: 200px;
    height: 200px;
    background: var(--tld-blue-light);
    top: 50%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes orbGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

/* Shield Icon Animation */
.tld-hero__shield {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.08;
    pointer-events: none;
}

.tld-hero__shield svg {
    width: 100%;
    height: 100%;
    /* Animação apenas de opacidade, sem scale */
    animation: shieldGlow 4s ease-in-out infinite;
}

@keyframes shieldGlow {
    0%, 100% { opacity: 0.08; }
    50% { opacity: 0.12; }
}

/* Hero Content */
.tld-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: var(--space-lg) var(--space-md);
}

.tld-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(44, 165, 255, 0.1);
    border: 1px solid rgba(44, 165, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--tld-blue-light);
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.tld-hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--tld-blue-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.tld-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--tld-gray-light);
    margin-bottom: var(--space-sm);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.tld-hero__title span {
    background: var(--tld-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Suporte para cores inline do editor rich text */
.tld-hero__title [style*="color"] {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: currentColor !important;
    background-clip: unset !important;
}

/* Suporte para formatação do editor (negrito, itálico, sublinhado) */
.tld-hero__title strong {
    font-weight: 900;
}

.tld-hero__title em {
    font-style: italic;
}

.tld-hero__title u {
    text-decoration: underline;
}

/* Remove espaçamento extra de parágrafos no título */
.tld-hero__title p {
    margin: 0;
    display: inline;
}

.tld-hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--tld-gray);
    margin-bottom: var(--space-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

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

/* CTA Button */
.tld-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 1.25rem 2.5rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.tld-btn--primary {
    background: var(--tld-gradient-accent);
    color: var(--tld-gray-light);
    box-shadow: var(--shadow-glow);
    animation: fadeInUp 0.8s ease forwards, btnGlow 3s ease-in-out infinite;
    animation-delay: 0.8s, 1.6s;
    opacity: 0;
}

.tld-btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.tld-btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 60px var(--tld-blue-glow-strong);
}

.tld-btn--primary:hover::before {
    opacity: 1;
}

.tld-btn__icon {
    width: 24px;
    height: 24px;
    transition: transform var(--transition-fast);
}

.tld-btn:hover .tld-btn__icon {
    transform: translateX(5px);
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 0 40px var(--tld-blue-glow); }
    50% { box-shadow: 0 0 60px var(--tld-blue-glow-strong); }
}

/* Scroll Indicator */
.tld-hero__scroll {
    position: absolute;
    bottom: var(--space-md);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    color: var(--tld-gray);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.tld-hero__scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(44, 165, 255, 0.5);
    border-radius: 15px;
    position: relative;
    margin: 0 auto;
}

.tld-hero__scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--tld-blue-light);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.tld-features {
    background: var(--tld-blue-dark);
    position: relative;
}

.tld-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--tld-blue-medium) 0%, transparent 100%);
    opacity: 0.1;
}

.tld-features__header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.tld-features__label {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(44, 165, 255, 0.1);
    border: 1px solid rgba(44, 165, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--tld-blue-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.tld-features__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-sm);
}

.tld-features__subtitle {
    color: var(--tld-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.tld-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.tld-feature-card {
    background: linear-gradient(135deg, rgba(10, 82, 153, 0.2) 0%, rgba(1, 16, 40, 0.8) 100%);
    border: 1px solid rgba(44, 165, 255, 0.15);
    border-radius: 20px;
    padding: var(--space-md);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.tld-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--tld-gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.tld-feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(44, 165, 255, 0.4);
    box-shadow: var(--shadow-glow);
}

.tld-feature-card:hover::before {
    transform: scaleX(1);
}

.tld-feature-card__icon {
    width: 60px;
    height: 60px;
    background: var(--tld-gradient-accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.tld-feature-card__icon svg {
    width: 30px;
    height: 30px;
    color: var(--tld-gray-light);
}

.tld-feature-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--tld-gray-light);
}

.tld-feature-card__desc {
    color: var(--tld-gray);
    font-size: 0.95rem;
}

/* ==========================================================================
   Maturity Levels Section
   ========================================================================== */
.tld-maturity {
    background: linear-gradient(180deg, var(--tld-blue-dark) 0%, #021a3d 100%);
    position: relative;
}

.tld-maturity__header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.tld-maturity__label {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(44, 165, 255, 0.1);
    border: 1px solid rgba(44, 165, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--tld-blue-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.tld-maturity__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-sm);
}

.tld-maturity__subtitle {
    color: var(--tld-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.tld-maturity__levels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.tld-level {
    text-align: center;
    padding: var(--space-md);
    border-radius: 20px;
    background: rgba(1, 16, 40, 0.6);
    border: 1px solid rgba(44, 165, 255, 0.1);
    transition: all var(--transition-medium);
}

.tld-level:hover {
    border-color: var(--tld-blue-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.tld-level__gauge {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-sm);
    position: relative;
}

.tld-level__gauge svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.tld-level__gauge-bg {
    fill: none;
    stroke: rgba(44, 165, 255, 0.1);
    stroke-width: 8;
}

.tld-level__gauge-fill {
    fill: none;
    stroke: var(--tld-blue-light);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 301.6;
    stroke-dashoffset: 301.6;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Percentual no centro do gauge */
.tld-level__gauge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.tld-level__name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.tld-level__range {
    font-size: 0.9rem;
    color: var(--tld-gray);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.tld-about {
    background: var(--tld-blue-dark);
    position: relative;
}

.tld-about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.tld-about__content {
    padding-right: var(--space-md);
}

.tld-about__label {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(44, 165, 255, 0.1);
    border: 1px solid rgba(44, 165, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--tld-blue-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.tld-about__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--space-sm);
}

.tld-about__text {
    color: var(--tld-gray);
    font-size: 1.05rem;
    margin-bottom: var(--space-md);
}

.tld-about__text p {
    margin-bottom: var(--space-sm);
}

.tld-about__text p:last-child {
    margin-bottom: 0;
}

.tld-about__list {
    list-style: none;
}

.tld-about__list-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--tld-gray-light);
}

.tld-about__list-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--tld-blue-light);
}

.tld-about__image {
    position: relative;
}

.tld-about__image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(44, 165, 255, 0.2);
    box-shadow: var(--shadow-glow);
}

.tld-about__image img {
    width: 100%;
    height: auto;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.tld-cta {
    background: linear-gradient(135deg, var(--tld-blue-medium) 0%, var(--tld-blue-dark) 100%);
    position: relative;
    overflow: hidden;
}

.tld-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(44, 165, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(44, 165, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.tld-cta__inner {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tld-cta__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-sm);
}

.tld-cta__text {
    color: var(--tld-gray);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.tld-cta .tld-btn {
    margin-top: var(--space-md);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.tld-footer {
    background: var(--tld-blue-dark);
    border-top: 1px solid rgba(44, 165, 255, 0.1);
    padding: var(--space-lg) 0 var(--space-md);
}

.tld-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    text-align: center;
}

.tld-footer__logo img {
    max-width: 300px;
    height: auto;
    opacity: 0.8;
}

.tld-footer__text {
    color: var(--tld-gray);
    font-size: 0.95rem;
    max-width: 500px;
}

.tld-footer__contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.tld-footer__contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--tld-gray);
    transition: color var(--transition-fast);
}

.tld-footer__contact-item:hover {
    color: var(--tld-blue-light);
}

.tld-footer__contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--tld-blue-light);
}

.tld-footer__copyright {
    color: var(--tld-gray);
    font-size: 0.8rem;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(44, 165, 255, 0.1);
    width: 100%;
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */
.tld-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.tld-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.tld-animate--delay-1 { transition-delay: 0.1s; }
.tld-animate--delay-2 { transition-delay: 0.2s; }
.tld-animate--delay-3 { transition-delay: 0.3s; }
.tld-animate--delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .tld-maturity__levels {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tld-about__inner {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .tld-about__content {
        padding-right: 0;
        text-align: center;
    }
    
    .tld-about__list-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Container com 90% de largura para não ficar colado */
    .tld-container {
        width: 92%;
        max-width: 92%;
        margin: 0 auto;
    }
    
    /* Reduz espaçamento entre seções */
    .tld-section {
        padding: var(--space-lg) 0;
    }
    
    .tld-hero {
        min-height: 100svh;
    }
    
    .tld-hero__content {
        padding: var(--space-md);
        padding-top: 120px; /* Espaço para o header fixo */
    }
    
    .tld-hero__title {
        font-size: 2.2rem; /* Reduzido de 3.5rem */
        line-height: 1.2;
    }
    
    .tld-hero__subtitle {
        font-size: 1rem; /* Reduzido de 1.3rem */
        margin-bottom: var(--space-md);
    }
    
    .tld-hero__shield {
        display: none;
    }
    
    .tld-hero__scroll {
        margin-top: var(--space-lg); /* Espaço entre botão e scroll */
        display: none;
    }
    
    .tld-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem; /* Reduzido para evitar quebra de linha */
        margin-bottom: var(--space-md); /* Espaço antes do scroll */
    }
    
    .tld-features__grid {
        grid-template-columns: 1fr;
    }
    
    .tld-header__inner {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .tld-nav {
        display: none;
    }
    
    /* Alinha lista do about à esquerda no mobile */
    .tld-about__content {
        text-align: left;
    }
    
    .tld-about__list {
        text-align: left;
    }
    
    .tld-about__list-item {
        justify-content: flex-start;
    }
    
    /* Reduz margem inferior dos cards de features */
    .tld-feature-card {
        margin-bottom: var(--space-sm);
    }
    
    /* Reduz espaço do header das seções */
    .tld-features__header,
    .tld-maturity__header,
    .tld-about__header {
        margin-bottom: var(--space-md);
    }
}

@media (max-width: 480px) {
    /* Container ainda menor em telas pequenas */
    .tld-container {
        width: 94%;
        max-width: 94%;
    }
    
    /* Reduz ainda mais o espaçamento entre seções */
    .tld-section {
        padding: var(--space-md) 0;
    }
    
    .tld-maturity__levels {
        grid-template-columns: 1fr;
    }
    
    .tld-footer__contact {
        flex-direction: column;
    }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .tld-hero__grid,
    .tld-particle,
    .tld-hero__orb,
    .tld-cyber-line {
        animation: none !important;
    }
}

/* Focus States */
.tld-btn:focus-visible,
a:focus-visible {
    outline: 2px solid var(--tld-blue-light);
    outline-offset: 4px;
}

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



/* ==========================================================================
   Plugin Cloud Security Assessment - ESTILOS COMPLETOS
   Controle total pelo tema (CSS do plugin desativado)
   ========================================================================== */

/* --------------------------------------
   Seções
   -------------------------------------- */

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


/* =============================================================================
   CORREÇÃO CRÍTICA PARA FORMULÁRIO MOBILE - v2.4.1
   =============================================================================
   
   PROBLEMA: O tema estava usando display:none nos inputs de radio/checkbox
   causando problemas de validação em dispositivos móveis.
   
   SOLUÇÃO: Substituir display:none por opacity:0 + clip-path para manter
   os elementos acessíveis ao JavaScript mas visualmente ocultos.
*/

/* CORREÇÃO: Radio e Checkbox inputs
   - Remove display:none que causa problemas em mobile
   - Usa clip-path e opacity para esconder visualmente
   - Mantém os elementos acessíveis para JavaScript/validação
*/

/* IMPORTANTE: Garante que inputs ainda respondem a cliques
   mesmo quando visualmente ocultos */

   ainda funcionem corretamente */

/* NOVO: Garante que o container da opção seja clicável */

/* MELHORIA: Torna toda a área clicável em mobile */

/* States dos radio/checkbox customizados */



/* CORREÇÃO ADICIONAL: Garante que inputs de texto funcionem em mobile */

/* MOBILE ESPECÍFICO: Ajustes para garantir usabilidade */
@media (max-width: 768px) {
    /* Aumenta área de toque em mobile */
    
    /* Garante que inputs não sejam muito pequenos para o toque */
    
    /* Botões maiores em mobile */
}

/* CORREÇÃO: Remove transforms que podem causar problemas de rendering em mobile */
@media (max-width: 768px) {
    
    /* Apenas aplica hover quando não é touch device */
    @media (hover: hover) and (pointer: fine) {
    }
}

/* --------------------------------------
   Visualização de Respostas
   -------------------------------------- */

#csa-responses-content {
    background: rgba(10, 82, 153, 0.15);
    border: 1px solid rgba(44, 165, 255, 0.15);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

/* --------------------------------------
   Loading
   -------------------------------------- */

@keyframes csaSpin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   MOBILE - SEM CARDS (MÁXIMA ÁREA ÚTIL)
   ========================================================================== */

@media (max-width: 768px) {
   
    /* Responses */
    #csa-responses-content {
        padding: 12px;
        border-radius: 8px;
        margin: 0 4px 15px 4px;
    }
        
}

/* Telas muito pequenas */
@media (max-width: 400px) {
    
    #csa-responses-content {
        padding: 10px;
        margin: 0 2px 12px 2px;
    }

}
/* Descrição dos níveis de maturidade */
.tld-level__description {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #8892B2;
    text-align: center;
}

@media (max-width: 768px) {
    .tld-level__description {
        font-size: 13px;
    }
}
