@charset "utf-8";
/**
 * AGeNCIABORDA 2026 - Main CSS
 * Design Premium: Clean, Profissional, Confiável
 * Palette: Azul Corporativo + Neutros Sofisticados
 */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Colors */
    --primary: #2264d2;
    --primary-dark: #1a4da3;
    --primary-light: #4d8ee8;
    
    --text-dark: #1f2937;
    --text-body: #4d4d4d;
    --text-muted: #6b7280;
    --text-white: #ffffff;
    
    --bg-white: #ffffff;
    --bg-gray: #f9fafb;
    --bg-dark: #1f2937;
    
    --border: #e5e7eb;
    
    /* Typography */
    --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 80px;
    --container-width: 1200px;
    
    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    
    --transition: all 0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p { margin-bottom: 1rem; }

.text-primary { color: var(--primary); }

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
}

.section--gray {
    background: var(--bg-gray);
}

.section--primary {
    background: var(--primary);
    color: var(--text-white);
}

.section--primary * {
    color: var(--text-white);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header__logo img {
    height: 40px;
    width: auto;
}

.header__nav {
    display: none;
}

.nav {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav__link {
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

.nav__link:hover {
    color: var(--primary);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--primary);
    color: var(--text-white);
    padding: 10px 24px;
    border-radius: 6px;
}

.nav__link--cta:hover {
    background: var(--primary-dark);
    color: var(--text-white);
}

.nav__link--cta::after {
    display: none;
}

/* Mobile Menu Toggle */
.header__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.header__toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

.header__toggle:hover span {
    background: var(--primary);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 81px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    list-style: none;
    padding: 20px;
}

.mobile-nav__item {
    border-bottom: 1px solid var(--border);
}

.mobile-nav__link {
    display: block;
    padding: 15px 0;
    font-weight: 500;
    color: var(--text-dark);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ededed 0%, #ffffff 100%);
}

.hero__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero__title {
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--font-display);
    text-align: center;
}

.btn--primary {
    background: var(--primary);
    color: var(--text-white);
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    border-color: var(--primary);
    color: var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: var(--text-white);
}

.btn--white {
    background: var(--bg-white);
    color: var(--primary);
}

.btn--white:hover {
    background: var(--bg-gray);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section__header--white * {
    color: var(--text-white);
}

.section__title {
    margin-bottom: 16px;
}

.section__subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.section__header--white .section__subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   CARDS
   ============================================ */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card__title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.card__text {
    color: var(--text-muted);
}

/* ============================================
   SPLIT LAYOUT
   ============================================ */
.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.split__content {
    order: 2;
}

.split__title {
    margin-bottom: 24px;
}

.split__text {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.split__image {
    order: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ============================================
   STEPS
   ============================================ */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
}

.step__number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.step__title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.step__text {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   AUDIENCE
   ============================================ */
.audience {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.audience__item {
    text-align: center;
    padding: 30px;
}

.audience__title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.audience__text {
    color: var(--text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--text-white);
}

.cta__title {
    color: var(--text-white);
    margin-bottom: 16px;
}

.cta__text {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 30px;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__title {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer__text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--primary-light);
}

.footer__contact {
    list-style: none;
}

.footer__contact li {
    margin-bottom: 16px;
}

.footer__contact strong {
    display: block;
    color: var(--text-white);
    margin-bottom: 4px;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer__contact a:hover {
    color: var(--primary-light);
}

.footer__social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 768px) {
    .header__toggle {
        display: none;
    }
    
    .header__nav {
        display: block;
    }
    
    .mobile-menu {
        display: none;
    }
    
    .split {
        grid-template-columns: 1fr 1fr;
    }
    
    .split__content {
        order: 1;
    }
    
    .split__image {
        order: 2;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero__cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* ============================================
   COMPONENTES ADICIONAIS - PÁGINA A AGÊNCIA
   Adicionar ao final do main.css
   ============================================ */

/* Hero Secondary */
.hero--secondary {
    background: linear-gradient(135deg, #ededed 0%, #f7f7f7 100%);
    padding: 100px 0 60px;
}

/* MVV Cards */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mvv-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.mvv-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}

.mvv-card__title {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.mvv-card__text {
    color: var(--text-muted);
    line-height: 1.8;
}

.mvv-list {
    list-style: none;
    text-align: left;
    margin-top: 16px;
}

.mvv-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-muted);
}

.mvv-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-card {
    text-align: center;
}

.team-card__avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    box-shadow: var(--shadow-md);
}

.team-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__name {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.team-card__role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.team-card__bio {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
}

.feature__number {
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 16px;
    font-family: var(--font-display);
    line-height: 1;
}

.feature__title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-white);
}

.feature__text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-card__value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-card__label {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.partner-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border-top: 4px solid var(--primary);
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.partner-card__title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.partner-card__text {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 767px) {
    .hero--secondary {
        padding: 60px 0 40px;
    }
    
    .mvv-grid,
    .team-grid,
    .features-grid,
    .stats-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .feature__number {
        font-size: 2.5rem;
    }
    
    .stat-card__value {
        font-size: 2.5rem;
    }
}

/* ============================================
   COMPONENTES ADICIONAIS - PÁGINA SERVIÇOS
   Adicionar ao final do main.css
   ============================================ */

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    margin-bottom: 24px;
}

.service-card__title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
	text-align: center;
}

.service-card__description {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
	text-align: center;
}

.service-card__features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-card__features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-body);
    font-size: 0.95rem;
}

.service-card__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

/* ============================================
   SERVICES PAGE - ADICIONAL
   ============================================ */

.service-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2162cf 0%, #1b4ea2 100%);
    border-radius: 20px;
    color: white;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.service-card__icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1b4ea2 0%, #2162cf 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card__icon svg {
    position: relative;
    z-index: 1;
    animation: iconFloat 3s ease-in-out infinite;
}

.service-card:hover .service-card__icon {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.4);
}

.service-card:hover .service-card__icon::before {
    opacity: 1;
}

.service-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #2264d2 0%, #1a4d9f 100%);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.service-card__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.service-card__cta svg {
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-card__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 100, 210, 0.3);
}

.service-card__cta:hover::before {
    left: 100%;
}

.service-card__cta:hover svg {
    transform: translateX(4px);
}

.service-card__cta:active {
    transform: translateY(-1px);
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .service-card__icon {
        width: 70px;
        height: 70px;
    }
    
    .service-card__cta {
        width: 100%;
        justify-content: center;
    }
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    padding: 40px 0;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.process-step__number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(34, 100, 210, 0.3);
}

.process-step__title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary);
    font-family: var(--font-display);
}

.process-step__text {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Connector Line (Desktop) */
@media (min-width: 768px) {
    .process-timeline {
        position: relative;
    }
    
    .process-timeline::before {
        content: '';
        position: absolute;
        top: 70px;
        left: 10%;
        right: 10%;
        height: 3px;
        background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
        z-index: 0;
    }
    
    .process-step {
        position: relative;
        z-index: 1;
    }
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition);
    font-family: var(--font-display);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--bg-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: var(--text-white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 24px 30px;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px 20px;
    }
}


/* Blog Layout */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.blog-main {
    min-width: 0;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}
/* ============================================
   BLOG CAROUSEL - IMPLEMENTO HOME
   ============================================ */

.blog-carousel-section {
    background: var(--bg-gray);
    overflow: hidden;
}

.blog-carousel {
    position: relative;
    margin-top: 48px;
    padding-bottom: 40px;
}

.blog-carousel__wrapper {
    overflow: hidden;
    position: relative;
}

.blog-carousel__track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.blog-carousel__item {
    flex: 0 0 calc(33.333% - 21.333px);
    margin-right: 32px;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-carousel__item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-carousel__image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-carousel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-carousel__item:hover .blog-carousel__image img {
    transform: scale(1.08);
}

.blog-carousel__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-carousel__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 14px;
}

.blog-carousel__category {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
}

.blog-carousel__date {
    color: var(--text-muted);
    font-size: 13px;
}

.blog-carousel__title {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.4;
}

.blog-carousel__title a {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.blog-carousel__title a:hover {
    color: var(--primary);
}

.blog-carousel__excerpt {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.blog-carousel__link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-carousel__link:hover {
    gap: 8px;
}

.blog-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.blog-carousel__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.blog-carousel__dot:hover {
    background: var(--primary-light);
}

.blog-carousel__dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

.blog-carousel__cta {
    text-align: center;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .blog-carousel__item {
        flex: 0 0 100%;
        margin-right: 0;
    }
    
    .blog-carousel__image {
        height: 200px;
    }
    
    .blog-carousel__content {
        padding: 20px;
    }
    
    .blog-carousel__title {
        font-size: 18px;
    }
}
/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.post-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.post-card__image {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-card__image img {
    transform: scale(1.05);
}

.post-card__content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.post-card__category {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-card__date {
    color: var(--text-muted);
}

.post-card__title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.post-card__title a {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.post-card__title a:hover {
    color: var(--primary);
}

.post-card__excerpt {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.post-card__link {
    color: var(--primary);
    font-weight: 600;
    transition: gap 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.post-card__link:hover {
    gap: 12px;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 80px 20px;
}

.no-posts h2 {
    color: var(--text-dark);
    margin-bottom: 16px;
}

.no-posts p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination__link,
.pagination__number {
    padding: 10px 16px;
    border-radius: 6px;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.pagination__link:hover,
.pagination__number:hover {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

.pagination__number--active {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

.pagination__numbers {
    display: flex;
    gap: 8px;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.sidebar-widget__title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

/* Sidebar Categories */
.sidebar-categories {
    list-style: none;
}

.sidebar-categories li {
    margin-bottom: 12px;
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    color: var(--text-body);
    border-radius: 6px;
    transition: var(--transition);
}

.sidebar-categories a:hover,
.sidebar-categories a.active {
    background: var(--primary);
    color: var(--text-white);
}

.sidebar-categories .count {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Sidebar Posts */
.sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-post {
    display: flex;
    gap: 16px;
}

.sidebar-post__image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-post__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post__content {
    flex: 1;
    min-width: 0;
}

.sidebar-post__title {
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.sidebar-post__title a {
    color: var(--text-dark);
}

.sidebar-post__title a:hover {
    color: var(--primary);
}

.sidebar-post__meta {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Sidebar CTA */
.sidebar-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
}

.sidebar-cta__title {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.sidebar-cta__text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.btn--block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Article */
.article {
    padding: 60px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.article-header {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.article-header__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.article-category {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-date,
.article-views {
    color: var(--text-muted);
}

.article-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
}

.article-excerpt {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.article-featured-image {
    max-width: 1000px;
    margin: 0 auto 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-body);
}

.article-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-content h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 32px 0;
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 12px;
}

/* Share Buttons */
.article-share {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.article-share h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    color: var(--text-white);
    font-weight: 600;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.share-btn--facebook {
    background: #1877f2;
}

.share-btn--twitter {
    background: #1da1f2;
}

.share-btn--linkedin {
    background: #0a66c2;
}

.share-btn--whatsapp {
    background: #25d366;
}

/* Related Posts */
.related-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.related-post {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.related-post__image {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.related-post__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post__content {
    padding: 24px;
}

.related-post__category {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: block;
}

.related-post__title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.related-post__title a {
    color: var(--text-dark);
}

.related-post__title a:hover {
    color: var(--primary);
}

.related-post__excerpt {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.related-post__link {
    color: var(--primary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 32px;
}

.contact-info__item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-info__icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    flex-shrink: 0;
}

.contact-info__content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.contact-info__content a {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-social {
    margin-top: 48px;
}

.contact-social__links {
    display: flex;
    gap: 12px;
}

.contact-social__links a {
    width: 40px;
    height: 40px;
    background: var(--bg-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-social__links a:hover {
    background: var(--primary);
    color: white;
}

.contact-form-wrapper {
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(34, 100, 210, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-error {
    display: block;
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 6px;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: 8px;
}

.form-message--success {
    background: #d1fae5;
    color: #065f46;
}

.form-message--error {
    background: #fee2e2;
    color: #991b1b;
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 767px) {
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SUCCESS MODAL - FORM CONTATO
   ============================================ */

.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.success-modal.active {
    display: flex;
}

.success-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.success-modal__content {
    position: relative;
    background: linear-gradient(135deg, #2264d2 0%, #1d4fa2 100%);
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: white;
}

.success-modal__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
}

.success-modal__icon svg {
    stroke: white;
    animation: checkDraw 0.6s ease 0.4s both;
}

.success-modal__title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 16px;
    animation: fadeInUp 0.5s ease 0.3s both;
    color: #ffffff;
}

.success-modal__text {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 24px;
    opacity: 0.95;
    animation: fadeInUp 0.5s ease 0.4s both;
}

.success-modal__timer {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 24px;
    animation: fadeInUp 0.5s ease 0.5s both;
}

.success-modal__timer span {
    font-weight: 700;
    font-size: 18px;
}

.success-modal__close {
    background: white;
    color: #2264d2;
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease 0.6s both;
}

.success-modal__close:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes checkDraw {
    0% {
        stroke-dasharray: 100;
        stroke-dashoffset: 100;
    }
    100% {
        stroke-dasharray: 100;
        stroke-dashoffset: 0;
    }
}

/* ============================================
   PRIVACY POLICY PAGE - ESTILO GERAL
   ============================================ */

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-meta {
    background: var(--bg-gray);
    padding: 20px 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary);
}

.privacy-meta p {
    margin: 0;
    font-size: 14px;
    color: var(--text-body);
}

.privacy-meta p + p {
    margin-top: 8px;
}

.privacy-section {
    margin-bottom: 48px;
}

.privacy-section h2 {
    color: var(--text-dark);
    font-size: 24px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.privacy-section p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}

.privacy-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.privacy-section ul li {
    color: var(--text-body);
    line-height: 1.8;
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
}

.privacy-section ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.privacy-section a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: var(--primary-dark);
}

.privacy-cta {
    background: var(--bg-gray);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
}

.privacy-cta p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.privacy-contact {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.whatsapp-link::before {
    content: "💬";
    font-size: 18px;
    transition: transform 0.3s ease;
}

.whatsapp-link:hover::before {
    transform: scale(1.2);
}

.whatsapp-link:hover {
    color: #25D366;
    text-decoration: none;
}

.btn.whatsapp-link {
    border-color: #25D366;
    color: #25D366;
}

.btn.whatsapp-link:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 0 20px;
    }
    
    .privacy-section h2 {
        font-size: 20px;
    }
    
    .privacy-cta {
        padding: 30px 20px;
    }
    
    .privacy-contact {
        flex-direction: column;
    }
    
    .privacy-contact .btn {
        width: 100%;
    }
}

/* ============================================
   SHARE BUTTONS UPDATE - COPIAR LINK BLOG
   ============================================ */

.share-btn--x {
    background: #000000;
    border-color: #000000;
}

.share-btn--x:hover {
    background: #14171a;
    border-color: #14171a;
    transform: translateY(-2px);
}

.share-btn--copy {
    background: #6b7280;
    border: 2px solid #6b7280;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.share-btn--copy:hover {
    background: #4b5563;
    border-color: #4b5563;
    transform: translateY(-2px);
}

.share-btn--copy:active {
    transform: translateY(0);
}

.copy-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 24px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    font-size: 16px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.copy-toast.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.copy-toast svg {
    width: 32px;
    height: 32px;
    color: white;
}

.copy-toast-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

@media (max-width: 768px) {
    .copy-toast {
        padding: 20px 32px;
        font-size: 14px;
        max-width: 90%;
    }
}
/* ============================================
   SERVICE PAGES — SISTEMA DINÂMICO
   AgênciaBorda 2026
   ============================================ */

/* FA icon dentro do service-card (substitui SVG) */
.service-card__icon i {
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

/* ─── Hero com ícone de serviço ─────────────── */
.hero--service .hero__content {
    max-width: 860px;
}

.hero__service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.2rem;
    color: var(--primary);
    border: 2px solid rgba(34, 100, 210, 0.2);
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* ─── Breadcrumb (service detail) ───────────── */
.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    flex-wrap: wrap;
    margin-bottom: 32px;
    font-size: 0.875rem;
}

.breadcrumb__link {
    color: var(--text-muted);
    transition: color 0.2s;
}

.breadcrumb__link:hover { color: var(--primary); }

.breadcrumb__item--sep { color: var(--text-muted); }

.breadcrumb__item--current {
    color: var(--text-dark);
    font-weight: 600;
}

/* ─── Intro section ─────────────────────────── */
.service-intro__grid {
    max-width: 900px;
    margin: 0 auto;
}

.service-intro__grid--with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 100%;
}

.service-intro__content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 1.2rem;
}

.service-intro__image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .service-intro__grid--with-image {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ─── Blocks: deliverables & benefits ──────── */
.service-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-block {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition);
}

.service-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-block__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-block--benefit .service-block__icon,
.service-block__icon--benefit {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.service-block__body { flex: 1; }

.service-block__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.service-block__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ─── Steps / Timeline ──────────────────────── */
.service-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.service-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.service-timeline__step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px 0;
    position: relative;
}

.service-timeline__number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-display);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(34, 100, 210, 0.3);
}

.service-timeline__body { padding-top: 12px; }

.service-timeline__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.service-timeline__desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 640px) {
    .service-timeline::before { left: 22px; }
    .service-timeline__number { width: 44px; height: 44px; font-size: 1rem; }
}

/* ─── CTA Duplo ─────────────────────────────── */
.service-cta__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.service-cta__card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px 36px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border);
    transition: var(--transition);
}

.service-cta__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-cta__card--whatsapp {
    border-color: #25d366;
}

.service-cta__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gray);
    border-radius: 50%;
    color: var(--primary);
}

.service-cta__card--whatsapp .service-cta__icon {
    background: #e8fdf0;
    color: #25d366;
}

.service-cta__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-cta__text {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.btn--whatsapp {
    background: #25d366;
    color: #fff;
    border: 2px solid #25d366;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn--whatsapp:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    color: #fff;
}

@media (max-width: 768px) {
    .service-cta__grid { grid-template-columns: 1fr; }
    .service-cta__card { padding: 32px 24px; }
}

/* ─── Serviços relacionados ─────────────────── */
.service-related__footer {
    text-align: center;
    margin-top: 48px;
}

.services-grid--related {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ─── Hero secundário com breadcrumb ────────── */
.hero--service {
    padding-bottom: 60px;
}

.hero--service .hero__content {
    text-align: center;
}

@media (max-width: 768px) {
    .hero__service-icon { width: 64px; height: 64px; font-size: 1.8rem; }
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__actions .btn { width: 100%; max-width: 320px; }
    .service-blocks { grid-template-columns: 1fr; }
    .services-grid--related { grid-template-columns: 1fr; }
}
