@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@700&display=swap');

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --dark-3: #222222;
    --dark-card: #181818;
    --white: #ffffff;
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-30: rgba(255, 255, 255, 0.3);
    --accent: #c8ff00;
    --accent-dark: #a8d600;
    --gray: #888888;
    --gray-light: #f5f5f5;
    --gray-border: #333333;
    --font-primary: 'Syne', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-secondary);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-border);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

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

.nav-link {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 400;
    color: var(--white-70);
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

.header-phone {
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    border: 1px solid var(--gray-border);
    padding: 10px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.header-phone:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.header-phone i {
    font-size: 12px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* Overlay layer for better text readability */
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--black), transparent);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
}

.hero-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 60px;
}

.hero-text-left {
    flex: 0 0 320px;
    align-self: flex-end;
}

.hero-description {
    font-size: 13px;
    font-weight: 300;
    color: var(--white-70);
    line-height: 1.7;
    margin-bottom: 24px;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    border-bottom: 1px solid var(--white-50);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.btn-link.small {
    font-size: 13px;
}

.btn-link i {
    font-size: 11px;
}

.hero-btn {
    gap: 16px;
    border-bottom: none;
    padding-bottom: 0;
}

.hero-btn:hover {
    border-color: transparent;
}

.hero-btn span {
    border-bottom: 1px solid var(--white-50);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.hero-btn:hover span {
    color: var(--accent);
    border-color: var(--accent);
}

.hero-btn .circle-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.3s ease;
}

.hero-btn:hover .circle-arrow {
    background: var(--accent);
    color: var(--dark);
}

.hero-btn.style-light span {
    color: var(--black);
    border-color: var(--gray-border);
}

.hero-btn.style-light:hover span {
    color: var(--black);
    border-color: var(--black);
}

.hero-btn.style-light .circle-arrow {
    border-color: var(--black);
    color: var(--black);
}

.hero-btn.style-light:hover .circle-arrow {
    background: var(--black);
    color: var(--accent);
}

.hero-title-wrapper {
    flex: 1;
    text-align: right;
    align-self: center;
    min-width: 0;
}

.hero-title {
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-line-1,
.hero-line-2,
.hero-line-3 {
    display: block;
    font-size: clamp(24px, 3.5vw, 58px);
    text-transform: uppercase;
    white-space: normal; /* Permite quebra de linha se necessário */
    word-break: keep-all;
}

.hero-highlight {
    color: var(--accent);
    font-style: italic;
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
    padding: 100px 0;
    background: var(--dark);
}

.quote-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.quote-left {
    flex: 1;
}

.quote-text {
    font-family: var(--font-primary);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.highlight {
    color: var(--accent);
    font-style: italic;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    background: var(--accent);
    padding: 14px 28px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.quote-right {
    flex: 1;
}

.quote-description {
    font-size: 14px;
    font-weight: 300;
    color: var(--white-70);
    line-height: 1.8;
    margin-bottom: 40px;
}

.stats-row {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--white-50);
    letter-spacing: 0.5px;
}

/* ============================================
   CREATIVE DESIGN SECTION
   ============================================ */
.creative-section {
    padding: 100px 0;
    background: var(--black);
}

.creative-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 60px;
    line-height: 1.3;
}

.creative-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.creative-images {
    flex: 1.2;
    display: flex;
    gap: 16px;
}

.creative-img-main {
    width: 55%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.creative-img-secondary {
    width: 45%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 40px;
}

.creative-content {
    flex: 0.8;
}

.creative-text {
    font-size: 14px;
    font-weight: 300;
    color: var(--white-70);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* ============================================
   SERVICES SECTION 
   ============================================ */
.services-section {
    padding: 80px 0;
    background: var(--dark);
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-row {
    display: flex;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-border);
    gap: 60px;
}

.service-row:last-child {
    border-bottom: none;
}

.service-content {
    flex: 1;
}

.service-title {
    font-family: var(--font-primary);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.service-desc {
    flex: 1;
}

.service-desc p {
    font-size: 14px;
    font-weight: 300;
    color: var(--white-70);
    line-height: 1.8;
}

.service-icon {
    flex: 0 0 auto;
}

.circle-arrow-lg {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-50);
    font-size: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-row:hover .circle-arrow-lg {
    border-color: var(--accent);
    color: var(--accent);
}

.circle-arrow-lg.accent {
    border-color: var(--accent);
    color: var(--accent);
}

.circle-arrow-lg.accent:hover {
    background: var(--accent);
    color: var(--dark);
}

/* ============================================
   STATS CIRCLES SECTION
   ============================================ */
.stats-circles-section {
    padding: 100px 0;
    background: var(--black);
    overflow: hidden;
}

.stats-circles-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
}

.stats-circle {
    position: relative;
    text-align: center;
    margin: 0 -20px; /* Overlap circles */
}

.circle-content {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    z-index: 1;
    transition: border-color 0.3s ease, z-index 0.3s ease;
}

.stats-circle:hover .circle-content {
    border-color: rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.circle-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.circle-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.counter-number,
.counter-suffix {
    font-family: 'Chakra Petch', var(--font-primary), sans-serif;
    font-size: clamp(48px, 6vw, 68px);
    font-weight: 700;
    color: var(--accent);
    -webkit-text-stroke: 0;
    line-height: 1;
    text-shadow: 0 0 10px rgba(200, 255, 0, 0.1);
}

.circle-bottom-label {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--white-50);
    text-transform: none;
}

/* ============================================
   HOW WE WORK SECTION
   ============================================ */
.work-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.section-title-dark {
    font-family: var(--font-primary);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 60px;
    color: var(--dark);
    line-height: 1.3;
}

.section-title-dark .highlight {
    color: var(--accent-dark);
    font-style: italic;
}

.work-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.work-grid::before {
    content: '';
    position: absolute;
    top: 55px; /* Adjust to align with the dots */
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--gray-border);
    z-index: 0;
}

.work-step {
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-label {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.step-marker {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gray-light);
    border: 3px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
}

.marker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dark);
}

.step-large-num {
    font-family: var(--font-primary);
    font-size: 90px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0,0,0,0.1);
    line-height: 1;
    margin-top: -45px;
    margin-bottom: 15px;
}

.step-title {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.step-desc {
    font-size: 13px;
    font-weight: 400;
    color: #666;
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--dark);
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.section-title-left {
    font-family: var(--font-primary);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
}

.testimonial-counter {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--white-50);
}

.testimonial-counter .current {
    color: var(--white);
    font-weight: 700;
    font-size: 24px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card.active,
.testimonial-card:hover {
    border-color: var(--accent);
}

.testimonial-quote {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.testimonial-text {
    font-size: 13px;
    font-weight: 300;
    color: var(--white-70);
    line-height: 1.8;
    margin-bottom: 16px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    font-size: 14px;
    color: #ffb800;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.author-role {
    display: block;
    font-size: 12px;
    color: var(--white-50);
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
    padding: 100px 0;
    background: var(--black);
}

.blog-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.blog-section .section-title-dark {
    color: var(--white);
}

.blog-section .section-title-dark .highlight {
    color: var(--accent);
}

.blog-subtitle {
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    color: var(--white-50);
    max-width: 600px;
    margin: -40px auto 50px;
    line-height: 1.7;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--dark-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-border);
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 24px;
}

.blog-title {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--white);
    letter-spacing: 0.3px;
}

.blog-excerpt {
    font-size: 13px;
    font-weight: 300;
    color: var(--white-50);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: var(--dark);
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-content {
    text-align: left;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-title .highlight {
    color: var(--accent);
    font-style: italic;
}

.cta-text {
    font-size: 14px;
    font-weight: 300;
    color: var(--white-50);
    line-height: 1.7;
}

.cta-icon {
    flex: 0 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 0;
    background: var(--dark-2);
    border-top: 1px solid var(--gray-border);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--white-50);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--white-70);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
}

.footer-heading {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    font-weight: 300;
    color: var(--white-50);
    transition: color 0.3s ease;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 300;
    color: var(--white-50);
    margin-bottom: 14px;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 3px;
    font-size: 13px;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    margin-top: 60px;
    border-top: 1px solid var(--gray-border);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--white-30);
}

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

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .quote-container {
        flex-direction: column;
        gap: 40px;
    }

    .creative-grid {
        flex-direction: column;
    }

    .creative-images {
        width: 100%;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid .testimonial-card:nth-child(3) {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header-phone {
        display: none;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .hero-text-left {
        flex: none;
        max-width: 100%;
        order: 2; /* Texto abaixo do título */
    }
    
    .hero-description {
        font-size: 15px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.9);
        font-weight: 400;
        margin-bottom: 30px;
    }

    .hero-title-wrapper {
        text-align: center;
        width: 100%;
        order: 1; /* Título em cima */
    }

    .hero-title {
        align-items: center;
        text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    }
    
    .hero-line-1,
    .hero-line-2,
    .hero-line-3 {
        font-size: clamp(26px, 8vw, 42px);
        white-space: normal;
        line-height: 1.1;
    }
    
    .hero-bg::before {
        background: rgba(0, 0, 0, 0.65); /* Fundo mais escurecido no celular p/ garantir legibilidade do video atrás */
    }

    .hero {
        padding-top: 200px; 
        padding-bottom: 80px;
    }

    .service-row {
        flex-direction: column;
        gap: 24px;
        padding: 40px 0;
        text-align: center;
    }

    .service-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .service-desc p {
        font-size: 14px;
    }

    .service-icon {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .counter-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .counter-item {
        width: 40%;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid .testimonial-card:nth-child(3) {
        grid-column: span 1;
        max-width: 100%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .quote-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .quote-text {
        font-size: 24px;
    }

    .stats-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .stat-item {
        flex: 1;
    }

    .creative-images {
        flex-direction: column;
    }

    .creative-img-main,
    .creative-img-secondary {
        width: 100%;
        height: 250px;
    }

    .creative-img-secondary {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 20px;
    }

    .hero-container,
    .quote-container,
    .creative-container,
    .services-container,
    .counter-container,
    .work-container,
    .testimonials-container,
    .blog-container,
    .cta-container,
    .footer-container {
        padding: 0 20px;
    }

    .hero-line-1,
    .hero-line-2,
    .hero-line-3 {
        font-size: 26px; /* Reduzido para caber melhor em telas estreitas */
        white-space: normal;
        line-height: 1.2;
        margin-bottom: 5px;
    }

    .counter-number,
    .counter-suffix {
        font-size: 40px;
    }
}
