/* =============================================
   DynamicIA — Design System & Styles
   Colors: #1A0B56 (base), #2C1C75 (cards), #F4683C (action)
   Fonts:  Sora (headings), Inter (body)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Sora:wght@300;400;500;600;700;800&display=swap');

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

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

body {
    font-family: 'Inter', sans-serif;
    background: #1A0B56;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.3s, box-shadow 0.3s;
    background: rgba(26, 11, 86, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.navbar.scrolled {
    background: rgba(26, 11, 86, 0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

.navbar__logo img {
    height: 100px;
    width: auto;
}

.navbar__links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.navbar__links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #E0E0E0;
    transition: color 0.25s;
    position: relative;
}

.navbar__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F4683C;
    transition: width 0.3s;
}

.navbar__links a:hover { color: #fff; }
.navbar__links a:hover::after { width: 100%; }

.navbar__cta {
    background: #F4683C;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.navbar__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 104, 60, 0.4);
}

.navbar__cta::after { display: none !important; }

/* Mobile menu */
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.navbar__toggle span {
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244,104,60,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(44,28,117,0.6) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__content { max-width: 560px; }

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244,104,60,0.12);
    border: 1px solid rgba(244,104,60,0.3);
    color: #F4683C;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero__badge svg {
    width: 16px;
    height: 16px;
    fill: #F4683C;
}

.hero__title {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero__title .highlight {
    background: linear-gradient(135deg, #F4683C, #ff8a5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: #E0E0E0;
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.7;
}

.hero__cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F4683C;
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244,104,60,0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.4);
}

.hero__image {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero__image img {
    max-height: 520px;
    width: auto;
    border-radius: 0;
    filter: drop-shadow(0 10px 40px rgba(0,0,0,0.5));
    animation: heroFloat 6s ease-in-out infinite;
    background: transparent;
}

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

/* ---------- Metrics ---------- */
.metrics {
    padding: 60px 0;
    position: relative;
}

.metrics .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.metric-card {
    text-align: center;
    background: rgba(44, 28, 117, 0.5);
    border: 1px solid rgba(244,104,60,0.15);
    border-radius: 16px;
    padding: 32px 20px;
    transition: transform 0.3s, border-color 0.3s;
}

.metric-card:hover {
    transform: translateY(-6px);
    border-color: rgba(244,104,60,0.4);
}

.metric-card__number {
    font-family: 'Sora', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #F4683C;
    line-height: 1;
    margin-bottom: 8px;
}

.metric-card__label {
    font-size: 0.9rem;
    color: #E0E0E0;
}

/* ---------- Section ---------- */
.section {
    padding: 100px 0;
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section__tag {
    display: inline-block;
    background: rgba(244,104,60,0.12);
    color: #F4683C;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section__title {
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.section__subtitle {
    font-size: 1.05rem;
    color: #E0E0E0;
    line-height: 1.7;
}

/* ---------- Sobre ---------- */
.section--sobre .sobre__content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(44, 28, 117, 0.55);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(5, 2, 20, 0.45);
}

.section--sobre p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #F5F3FF;
}

.section--sobre p + p {
    margin-top: 1.2rem;
}

/* ---------- Services ---------- */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: #2C1C75;
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F4683C, #ff8a5c);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(244,104,60,0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.service-card:hover::before { opacity: 1; }

.service-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(244,104,60,0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: #F4683C;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card__title {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 0.92rem;
    color: #c4bfdf;
    line-height: 1.6;
}

/* ---------- Journey / Timeline ---------- */
.journey {
    background: linear-gradient(180deg, #1A0B56 0%, #130940 100%);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #F4683C 0%, #2C1C75 100%);
}

.timeline__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.timeline__item:nth-child(odd) { flex-direction: row; }
.timeline__item:nth-child(even) { flex-direction: row-reverse; }

.timeline__content {
    width: 45%;
    background: #2C1C75;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.3s;
}

.timeline__content:hover { transform: translateY(-4px); }

.timeline__item:nth-child(odd) .timeline__content { margin-right: auto; }
.timeline__item:nth-child(even) .timeline__content { margin-left: auto; }

.timeline__dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #F4683C;
    border: 3px solid #1A0B56;
    border-radius: 50%;
    z-index: 2;
}

.timeline__step {
    font-size: 0.8rem;
    color: #F4683C;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.timeline__title {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.timeline__desc {
    font-size: 0.9rem;
    color: #c4bfdf;
    line-height: 1.6;
}

/* ---------- Pricing ---------- */
.pricing {
    background: linear-gradient(180deg, #130940 0%, #1A0B56 100%);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: start;
}

.pricing__card {
    background: #2C1C75;
    border-radius: 20px;
    padding: 20px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing__card:hover {
    transform: translateY(-6px);
    border-color: rgba(244,104,60,0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.pricing__card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(244,104,60,0.08), transparent 70%);
    border-radius: 50%;
}

/* Featured card */
.pricing__card--featured {
    border-color: #F4683C;
    box-shadow: 0 0 40px rgba(244,104,60,0.15);
}

.pricing__card--featured::before {
    background: radial-gradient(circle, rgba(244,104,60,0.15), transparent 70%);
}

.pricing__badge-popular {
    position: absolute;
    top: 16px;
    right: -32px;
    background: #F4683C;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 40px;
    transform: rotate(45deg);
}

.pricing__label {
    font-size: 0.85rem;
    color: #F4683C;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.pricing__price {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.pricing__price span {
    font-size: 1rem;
    font-weight: 400;
    color: #E0E0E0;
}

.pricing__desc {
    color: #c4bfdf;
    margin-bottom: 12px;
    font-size: 0.78rem;
    line-height: 1.4;
    min-height: 40px;
}

.pricing__features {
    text-align: left;
    margin-bottom: 12px;
    flex-grow: 1;
}

.pricing__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.78rem;
}

.pricing__feature svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #22c55e;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* ---------- Diferencial ---------- */
.diferencial {
    background: linear-gradient(180deg, #120736 0%, #1A0B56 80%);
    position: relative;
    overflow: hidden;
}

.diferencial::before,
.diferencial::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.diferencial::before {
    width: 320px;
    height: 320px;
    background: rgba(244,104,60,0.25);
    top: -80px;
    right: -60px;
}

.diferencial::after {
    width: 280px;
    height: 280px;
    background: rgba(38,205,179,0.2);
    bottom: -100px;
    left: -60px;
}

.diferencial__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.diferencial__content {
    background: rgba(44, 28, 117, 0.55);
    border-radius: 28px;
    padding: 48px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 35px 80px rgba(5, 2, 20, 0.45);
}

.diferencial__subtitle {
    font-size: 1.1rem;
    color: #E5E0FF;
    margin-top: 12px;
}

.diferencial__benefits {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.diferencial__benefit {
    display: flex;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(15, 6, 46, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
}

.diferencial__benefit p {
    font-size: 0.95rem;
    color: #F5F3FF;
    line-height: 1.5;
}

.diferencial__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(158,252,122,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.diferencial__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #9efc7a;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.diferencial__visual {
    text-align: center;
}



.diferencial__hint {
    margin-top: 28px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #c6ff9e;
}

/* ---------- Testimonials ---------- */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: #2C1C75;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.3s;
}

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

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-card__stars svg {
    width: 18px;
    height: 18px;
    fill: #F4683C;
}

.testimonial-card__text {
    font-size: 0.95rem;
    color: #E0E0E0;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(244,104,60,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: #F4683C;
    font-size: 1.1rem;
}

.testimonial-card__name {
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-card__role {
    font-size: 0.8rem;
    color: #c4bfdf;
}

/* ---------- FAQ ---------- */
.faq__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 24px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .faq__list {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: #2C1C75;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    transition: border-color 0.3s;
    height: fit-content;
}

.faq-item.active { border-color: rgba(244,104,60,0.3); }

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    cursor: pointer;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    background: none;
    border: none;
    color: #fff;
    width: 100%;
    text-align: left;
    transition: color 0.25s;
}

.faq-item__question:hover { color: #F4683C; }

.faq-item__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(244,104,60,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.3s;
}

.faq-item.active .faq-item__icon {
    transform: rotate(45deg);
    background: #F4683C;
}

.faq-item__icon svg {
    width: 14px;
    height: 14px;
    stroke: #F4683C;
    stroke-width: 2.5;
    fill: none;
}

.faq-item.active .faq-item__icon svg { stroke: #fff; }

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.faq-item.active .faq-item__answer {
    max-height: 300px;
    padding: 0 28px 24px;
}

.faq-item__answer p {
    color: #c4bfdf;
    font-size: 0.93rem;
    line-height: 1.7;
}

/* ---------- CTA Section ---------- */
.cta-section {
    padding: 100px 0;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.cta-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(244,104,60,0.1), transparent 70%);
    pointer-events: none;
}

.cta-section__title {
    font-size: 2.8rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-section__subtitle {
    font-size: 1.1rem;
    color: #E0E0E0;
    margin-bottom: 36px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* ---------- Contato ---------- */
.contato__content,
.contato__image {
    flex: 1 1 320px;
}

.contato__content {
    max-width: 560px;
    margin: 0 auto 0 0;
}

.contato__image {
    display: flex;
    justify-content: center;
    position: relative;
}

.contato__image img {
    max-height: 520px;
    width: auto;
    border-radius: 0;
    filter: drop-shadow(0 10px 40px rgba(0,0,0,0.5));
    animation: heroFloat 6s ease-in-out infinite;
    background: transparent;
}

/* ---------- Footer ---------- */
.footer {
    background: #0f0836;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__logo img {
    height: 100px;
    width: auto;
}

.footer__copy {
    font-size: 0.85rem;
    color: #c4bfdf;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__social-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #F5F3FF;
    letter-spacing: 0.02em;
}

.footer__social-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer__icon-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, transform 0.25s;
}

.footer__icon-link svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
}

.footer__icon-link:hover {
    background: rgba(244,104,60,0.25);
    transform: translateY(-2px);
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: transform 0.25s;
}

.whatsapp-float:hover { transform: scale(1.1); }

.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }

/* ---------- Scroll Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero__content { max-width: 100%; margin: 0 auto; }
    .hero__subtitle { margin-left: auto; margin-right: auto; }
    .hero__cta-group { justify-content: center; }
    .hero__image { margin-top: 40px; }
    .hero__image img { max-height: 400px; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .metrics .container { grid-template-columns: repeat(2, 1fr); }
    .testimonials__grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .pricing__grid { grid-template-columns: repeat(2, 1fr); }
    .diferencial__grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .diferencial__content { text-align: center; }
    .diferencial__benefit { text-align: left; }
    .diferencial__visual { max-width: 340px; margin: 0 auto; }
    .cta-section { text-align: center; }
    .cta-section .container {
        flex-direction: column;
        text-align: center;
    }
    .contato__content {
        margin: 0 auto;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar__links { display: none; }
    .navbar__toggle { display: flex; }
    .navbar__links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 11, 86, 0.98);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .hero__title { font-size: 2.2rem; }
    .section__title { font-size: 2rem; }
    .services__grid { grid-template-columns: 1fr; }
    .metrics .container { grid-template-columns: 1fr 1fr; }
    .pricing__card { padding: 28px 20px; }
    .pricing__price { font-size: 2rem; }
    .pricing__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .diferencial__content { padding: 32px 24px; }
    .diferencial__benefit { flex-direction: column; }
    .diferencial__device { width: 240px; }
    .cta-section__title { font-size: 2rem; }
    .timeline::before { left: 20px; }
    .timeline__item { flex-direction: row !important; }
    .timeline__content { width: calc(100% - 50px); margin-left: 50px !important; margin-right: 0 !important; }
    .timeline__dot { left: 20px; }
    .footer__social { justify-content: center; text-align: center; }
    .footer__social-label { width: 100%; }
    .footer__social-icons { justify-content: center; }
}

@media (max-width: 480px) {
    .hero { padding: 100px 0 60px; }
    .hero__title { font-size: 1.8rem; }
    .hero__cta-group { flex-direction: column; align-items: center; }
    .metrics .container { grid-template-columns: 1fr; }
    .diferencial__content { padding: 28px 20px; }
    .diferencial__device { width: 100%; max-width: 220px; }
    .footer .container { flex-direction: column; text-align: center; }
}
