/* 
   LP ESCOLA PRÓ-ARTE - TEMA CLARO INFANTIL (teste)
   Cores suaves e alegres para curso de arte para crianças
*/

:root {
    /* Tema claro - fundos */
    --bg-deep: #fef9f3;
    --bg-dark: #fff8ee;
    --bg-card: #ffffff;
    
    /* Texto */
    --text-main: #2d3436;
    --text-muted: #636e72;
    --text-highlight: #5B9BD5;

    /* Marca (header/footer) */
    --brand: #085eab;
    --brand-light: #0d6fc7;
    /* Cores infantis - suaves e alegres */
    --primary: #5B9BD5;       /* Azul suave */
    --primary-glow: #7BB3E8;
    --secondary: #B19CD9;      /* Lavanda */
    --accent: #6BCB77;         /* Verde alegre */
    --accent-hover: #5ab868;
    --coral: #FF8B94;
    --amarelo: #FFE066;
    --rosa: #FFB6C1;
    
    /* Gradientes leves */
    --gradient-hero: linear-gradient(135deg, #e8f4fc 0%, #fce8f5 50%, #fff4e0 100%);
    --gradient-text: linear-gradient(to right, #5B9BD5, #B19CD9);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #fefbf7 100%);
    
    /* Layout */
    --container-width: 1100px;
    --header-height: 80px;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Fraunces', serif;
}

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

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.container-narrow {
    max-width: 700px;
}

.text-center { text-align: center; }
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mt-6 { margin-top: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.9rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-xl { padding: 1.2rem 2.5rem; font-size: 1.25rem; }
.btn-full { width: 100%; }

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: var(--primary);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--primary-glow);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-glass:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-glow {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-glow:hover {
    background: var(--primary);
    color: #fff;
}

.icon-hover svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.icon-hover:hover svg {
    transform: translateX(4px);
}

/* Header - cor da marca */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: var(--brand);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo img {
    filter: brightness(0) invert(1);
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.nav-list a:hover {
    color: #fff;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

/* Hero Background Animation - suave */
.hero-bg-anim {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(184, 156, 217, 0.2), transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(91, 155, 213, 0.15), transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(255, 224, 102, 0.12), transparent 45%);
    animation: rotateBg 25s linear infinite;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(91, 155, 213, 0.15);
    border: 1px solid rgba(91, 155, 213, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 139, 148, 0.4);
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.avatars {
    display: flex;
}

.avatar-placeholder {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--amarelo), var(--coral));
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-left: -10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.avatar-placeholder:first-child { margin-left: 0; }
.avatar-placeholder .icon-svg {
    width: 18px;
    height: 18px;
    color: #fff;
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.glass-card-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible; /* Allow floating cards to stick out */
}

.hero-img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(91, 155, 213, 0.25);
    border: 3px solid #fff;
    position: relative;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--amarelo);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    right: -20px;
    animation-delay: 3s;
}

.floating-card .icon.icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 8px;
    border-radius: 12px;
    flex-shrink: 0;
}
.floating-card .icon-wrap .icon-svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 0.9rem;
    color: var(--text-main);
}

.floating-card span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Sections General */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-dark { background: #f0f9ff; }
.section-darker { background: #fff8ee; }
.section-gradient {
    background: linear-gradient(180deg, #fff4e0 0%, #fef9f3 50%, #fce8f5 100%);
}
.section-glass { 
    background: linear-gradient(180deg, #fef9f3 0%, #fce8f5 100%);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Problem Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #fff;
    border: 2px solid rgba(91, 155, 213, 0.2);
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(91, 155, 213, 0.2);
}

.card-icon-bg {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon-bg svg { width: 24px; height: 24px; }

.icon-red { background: rgba(255, 139, 148, 0.35); color: #e84393; }
.icon-orange { background: rgba(255, 224, 102, 0.5); color: #e17055; }
.icon-purple { background: rgba(177, 156, 217, 0.35); color: #a29bfe; }

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Split Layout (Benefits) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.kicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

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

.benefit-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-list strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.benefit-list p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.image-frame {
    position: relative;
    padding: 1rem;
    border: 3px solid var(--amarelo);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.image-frame img {
    border-radius: var(--radius-md);
}

/* Steps */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.step-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(91, 155, 213, 0.25);
    font-weight: 700;
    line-height: 1;
    margin-bottom: -1.5rem;
    position: relative;
    z-index: 0;
}

.step-item h3 {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-item p {
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* Curriculum Grid */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.skill-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px solid rgba(177, 156, 217, 0.25);
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.skill-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(177, 156, 217, 0.2);
}

.skill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.skill-icon .icon-svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary);
}

.skill-card h4 { margin-bottom: 0.5rem; }
.skill-card p { color: var(--text-muted); font-size: 0.9rem; }

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

.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(107, 203, 119, 0.3);
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.author-info strong { display: block; }
.author-info span { font-size: 0.85rem; color: var(--text-muted); }

/* Stats */
.stat-item {
    padding: 2rem;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* FAQ - duas colunas (4 + 4) */
.faq-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid rgba(91, 155, 213, 0.2);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    padding-right: 3rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-item[open] summary::after { content: '-'; }

.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(91, 155, 213, 0.15);
    padding-top: 1rem;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, #6BCB77 0%, #5B9BD5 50%, #B19CD9 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    margin: 4rem auto;
    width: 90%;
    max-width: var(--container-width);
    text-align: center;
    padding: 5rem 2rem;
    box-shadow: 0 20px 60px rgba(107, 203, 119, 0.35);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.cta-desc {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-note {
    margin-top: 1.5rem;
    opacity: 0.8;
}

/* Contact: Form + Dados e Campus (duas colunas) */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-col {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(91, 155, 213, 0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-info-col {
    color: var(--text-main);
}

.contact-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.campus-block {
    margin-bottom: 2rem;
}

.campus-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.campus-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.campus-icon .icon-svg {
    width: 1.2rem;
    height: 1.2rem;
    color: var(--primary);
}

.campus-address {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    line-height: 1.5;
}

.campus-phone a {
    color: var(--primary);
    text-decoration: none;
}

.campus-phone a:hover {
    text-decoration: underline;
}

.contact-email {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(91, 155, 213, 0.2);
    font-size: 0.95rem;
}

.contact-email a {
    color: var(--primary);
}

/* Form inputs (reused) */
.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 1rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: 0.3s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23636e72' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.input-group input,
.input-group textarea {
    background-image: none;
    padding-right: 1rem;
}

.input-group select {
    cursor: pointer;
}

.input-group select option {
    background: #fff;
    color: var(--text-main);
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #fff;
}

.input-group input:focus,
.input-group textarea:focus {
    background-image: none;
}

.input-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.3s;
    font-size: 1rem;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label,
.input-group select:focus ~ label,
.input-group select:valid ~ label {
    top: -0.6rem;
    left: 0.8rem;
    font-size: 0.8rem;
    background: #fff;
    padding: 0 0.4rem;
    color: var(--primary);
}

.input-group--select label.label-static {
    position: static;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.input-group--select select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23636e72' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.checkbox-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

/* Footer - cor da marca */
.footer {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding: 4rem 0 2rem;
    background: var(--brand);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.footer-brand h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer a { color: rgba(255, 255, 255, 0.95); }
.footer a:hover { color: #fff; }
.footer-contact p { margin-bottom: 0.5rem; }

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

.footer-social a {
    color: #fff;
    font-weight: 500;
}

.footer-social a:hover { color: rgba(255, 255, 255, 0.8); }

.footer-legal {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-fade {
    opacity: 0;
    transition: all 1s ease;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(56, 189, 248, 0); }
    100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

.pulse-anim {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Mobile */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .mobile-toggle span { background: #fff; }
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--brand);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-150%);
        transition: 0.4s ease;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    
    .nav.active { transform: translateY(0); }
    .nav-list { flex-direction: column; gap: 1.5rem; }
    
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; flex-direction: column; }
    .hero-trust { justify-content: center; }
    
    .split-layout { grid-template-columns: 1fr; }
    .split-image { order: -1; }
    
    .floating-card { display: none; }
    
    .section-title { font-size: 2rem; }
    .step-number { font-size: 3rem; }

    .contact-layout { grid-template-columns: 1fr; }
    .contact-info-col { order: -1; }

    .faq-two-cols { grid-template-columns: 1fr; }
}
