:root {
    --primary: #A68A56;
    --primary-hover: #C4A870;
    --secondary: #002B5C;
    --dark-bg: #002B5C;
    --darker-bg: #001F42;
    --card-bg: rgba(0, 31, 66, 0.75);
    --text-main: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(166, 138, 86, 0.35);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.45);
    --gradient: linear-gradient(135deg, #A68A56 0%, #C4A870 100%);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-aux: 'Work Sans', sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.dark-bg {
    background-color: var(--darker-bg);
}

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

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

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Glassmorphism */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gradient);
    color: #002B5C;
    box-shadow: 0 4px 18px rgba(166, 138, 86, 0.45);
    font-weight: 800;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(166, 138, 86, 0.65);
    color: #002B5C;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(166, 138, 86, 0.15);
    border-color: var(--primary);
    transform: translateY(-2px);
    color: #FFFFFF;
}

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

.btn-outline:hover {
    background: var(--gradient);
    color: #002B5C;
    font-weight: 800;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(0, 27, 58, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

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

.nav-btn {
    padding: 0.65rem 1.35rem;
    font-size: 0.92rem;
    flex-shrink: 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.logo-highlight {
    color: var(--primary);
}

.desktop-nav ul {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 2px;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--primary);
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background: linear-gradient(155deg, #002B5C 0%, #001630 60%, #001F42 100%);
}

.glow-bg {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(166, 138, 86, 0.12) 0%, rgba(0, 43, 92, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(166, 138, 86, 0.12);
    color: var(--primary-hover);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(166, 138, 86, 0.35);
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-text h1 {
    font-size: 3.4rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.support-text {
    font-size: 0.9rem !important;
    color: #FFFFFF !important;
}

.support-text i {
    color: #A68A56;
    margin-right: 0.5rem;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--glass-border);
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image img:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--primary);
}

/* Mockup Card */
.mockup-card {
    padding: 1.5rem;
    position: relative;
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.5s ease;
}

.mockup-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red    { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green  { background: #27C93F; }

.mockup-skeleton {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-bottom: 1rem;
}
.mockup-skeleton.title  { width: 60%; height: 24px; margin-bottom: 1.5rem; }
.mockup-skeleton.text   { width: 100%; height: 12px; }
.mockup-skeleton.button { width: 40%; height: 40px; border-radius: 20px; background: var(--gradient); margin-top: 2rem; }

.mockup-stats {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
}
.stat-box {
    background: rgba(255,255,255,0.05);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Credibility Bar */
.credibility-section {
    background: var(--gradient);
    padding: 2.5rem 0;
    position: relative;
}

.credibility-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.08);
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.cred-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #002B5C;
}

.cred-item i {
    font-size: 1.5rem;
    background: rgba(0, 43, 92, 0.15);
    padding: 1rem;
    border-radius: 12px;
    flex-shrink: 0;
    color: #002B5C;
}

.cred-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #002B5C;
}

.cred-item p {
    font-size: 0.85rem;
    color: rgba(0, 43, 92, 0.8);
}

/* About Section */
.about-section {
    position: relative;
}

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

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.about-image-frame {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--glass-border);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--primary);
}

.about-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-frame:hover img {
    transform: scale(1.03);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-size: 1.02rem;
}

/* Services */
.services-section {
    background-color: var(--darker-bg);
}

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

.service-card {
    padding: 0;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(166, 138, 86, 0.5);
}

/* Fixed image container — prevents text cutoff */
.service-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    flex-shrink: 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #FFFFFF;
}

.service-card-body p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.65;
    flex: 1;
}

.service-link {
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.9rem;
    color: var(--primary-hover);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(166, 138, 86, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--glass-border);
}

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

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.75rem;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.benefit-item:hover {
    border-color: rgba(166, 138, 86, 0.6);
    transform: translateY(-4px);
}

.b-icon {
    background: var(--gradient);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    color: #002B5C;
    box-shadow: 0 4px 14px rgba(166, 138, 86, 0.35);
}

.b-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    color: #FFFFFF;
}

.b-text p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.6;
}

/* Process */
.process-section {
    background-color: var(--darker-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.step {
    padding: 2.25rem 2rem;
    position: relative;
    transition: transform 0.3s ease;
}

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

.step-num {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.18;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.step h4 {
    margin-top: 1rem;
    font-size: 1.15rem;
    color: #FFFFFF;
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease;
    border-top: 3px solid var(--primary);
}

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

.quote-icon {
    font-size: 2.2rem;
    color: var(--primary);
    opacity: 0.55;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.t-author h4 {
    margin-bottom: 0.2rem;
    font-size: 1rem;
    color: #FFFFFF;
}

.t-author span {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Location */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-info-list {
    margin-top: 2rem;
}

.contact-info-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    color: #FFFFFF;
}

.contact-info-list span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-info-list i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.map-wrapper {
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    padding: 0.5rem;
    border: 1px solid var(--glass-border);
}

.map-wrapper iframe {
    border-radius: 12px;
    width: 100%;
    height: 100%;
}

/* FAQ */
.faq-accordion {
    max-width: 820px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(166, 138, 86, 0.55);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    gap: 1rem;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.05rem;
    color: #FFFFFF;
    flex: 1;
}

.faq-question i {
    color: var(--primary);
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 250px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active {
    border-color: rgba(166, 138, 86, 0.5);
}

/* Location / Area de Atuacao Section */
.location-section {
    background-color: var(--darker-bg);
}

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

.location-text p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

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

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-info-list li i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.location-visual {
    position: relative;
}

.location-photo-card {
    padding: 1.5rem;
    overflow: visible;
}

.location-photo-card img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    object-position: top center;
    border-radius: 12px;
    display: block;
}

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

.loc-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(166, 138, 86, 0.12);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
    color: var(--text-main);
    flex: 1;
    min-width: 100px;
    max-width: 140px;
}

.loc-badge i {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.loc-badge span strong {
    display: block;
    color: #fff;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(155deg, #002B5C 0%, #001F42 100%);
}

.cta-box {
    padding: 4.5rem 3rem;
    background: rgba(0, 31, 66, 0.8);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(166, 138, 86, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    position: relative;
}

.cta-box p {
    color: var(--text-muted);
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: 2rem;
    line-height: 1.7;
    position: relative;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.text-sm  { font-size: 0.9rem; }
.text-muted { color: var(--text-muted); }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

/* Footer */
footer {
    background: #001120;
    padding: 4.5rem 0 0;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-about p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.65;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(166, 138, 86, 0.1);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient);
    color: #002B5C;
    border-color: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    font-size: 1rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.93rem;
}

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

.footer-contact ul li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.5rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%   { transform: scale(1);    box-shadow: 0 0 0 0   rgba(37, 211, 102, 0.7); }
    70%  { transform: scale(1.06); box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { transform: scale(1);    box-shadow: 0 0 0 0   rgba(37, 211, 102, 0); }
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.6s; }

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

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    .hero-content, .about-grid, .location-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-image { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .hero-text h1 { font-size: 2.8rem; }
    .credibility-grid { grid-template-columns: 1fr 1fr; }
    .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-image { margin-bottom: 2rem; }
    .about-image-card { max-width: 380px; height: 440px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
    header {
        padding: 0.85rem 0;
        background: rgba(0, 27, 58, 0.94);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(166, 138, 86, 0.2);
    }
    header.scrolled {
        padding: 0.65rem 0;
        background: rgba(0, 27, 58, 0.98);
    }
    .header-container {
        gap: 0.5rem;
    }
    .logo {
        font-size: 1.15rem;
        white-space: nowrap;
    }
    .desktop-nav { 
        display: none; 
    }
    .nav-btn {
        padding: 0.45rem 0.85rem;
        font-size: 0.82rem;
        white-space: nowrap;
        gap: 0.35rem;
    }
    .hero-section {
        padding-top: 7.5rem;
        padding-bottom: 3.5rem;
        min-height: auto;
    }
    .hero-content {
        gap: 2rem;
    }
    .badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.85rem;
        margin-bottom: 1.2rem;
    }
    .hero-text h1 { 
        font-size: 1.95rem; 
        line-height: 1.25;
        margin-bottom: 1.2rem;
    }
    .hero-text p {
        font-size: 0.98rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    .hero-buttons { 
        flex-direction: column; 
        align-items: stretch; 
        gap: 0.75rem;
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .support-text {
        font-size: 0.85rem !important;
        margin-top: 0.5rem;
        text-align: center;
    }
    .about-image {
        margin-bottom: 2rem;
    }
    .about-image-frame {
        max-width: 100%;
        border-radius: 18px;
    }
    .credibility-grid { grid-template-columns: 1fr; }
    .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .cta-buttons { 
        flex-direction: column; 
        align-items: stretch; 
        gap: 0.75rem;
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
    .cta-buttons .btn { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; gap: 0.5rem; text-align: center; }
    .cta-box { padding: 3rem 1.5rem; }
    .cta-box h2 { font-size: 1.9rem; }
    .section-padding { padding: 4rem 0; }
    .benefit-item { flex-direction: column; }
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.7rem;
    }
}

@media (max-width: 420px) {
    .logo {
        font-size: 1.05rem;
    }
    .nav-btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.75rem;
    }
    .hero-text h1 {
        font-size: 1.65rem;
    }
    .hero-section {
        padding-top: 6.8rem;
    }
}
