/* ==================== VARIABLES ==================== */
:root {
    /* Colors */
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #ffffff;
    --secondary-dark: #ffffff;
    
    --text-color: #000000;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    
    --bg-color: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #111827;
    
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Spacing */
    --header-height: 80px;
    --section-padding: 80px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

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

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input,
textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ==================== UTILITIES ==================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
}

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

.section__subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section__title {
    font-size: 42px;
    font-weight: var(--font-weight-extrabold);
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section__description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== BUTTONS ==================== */
.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.button--primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.button--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.button--secondary {
    background: var(--bg-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.button--secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.button--large {
    padding: 18px 36px;
    font-size: 18px;
}

.button--full {
    width: 100%;
    justify-content: center;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.nav_logo {
  display: flex;
  align-items: center;
  /* Outros estilos para o link, se houver */
}

.nav_logo img {
  height: 30px; /* Define a altura da sua logo */
  width: auto; /* Mantém a proporção */
  margin-right: 10px; /* Espaço entre a logo e o texto */
}

.nav_logo span {
  /* Estilos para o texto "DS" */
  font-weight: bold;
  color: #fff;
  /* Outros estilos de texto */
}


.nav__logo i {
    font-size: 28px;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__link {
    font-weight: var(--font-weight-medium);
    color: var(--text-color);
    transition: color var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    padding: 10px 24px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: var(--radius-md);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--primary-dark);
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
}

/* ==================== HERO ==================== */
.hero {
    padding-top: calc(var(--header-height) + 60px);
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__subtitle {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero__title {
    font-size: 40px;
    font-weight: var(--font-weight-extrabold);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-color);
}

.hero__description {
    font-size: 19px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

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

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 8px;
}

.hero__stat-text {
    font-size: 14px;
    color: var(--text-light);
}

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

.hero__image-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.hero__icon {
    font-size: 280px;
    color: var(--primary-color);
    animation: float 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

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

/* ==================== SERVIÇOS ==================== */
/* .servicos {
    background: var(--bg-color);
}

.servicos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.servico__card {
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.servico__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.servico__card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.servico__card:hover::before {
    transform: scaleX(1);
}

.servico__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.servico__icon i {
    font-size: 32px;
    color: #ffffff;
}

.servico__title {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 12px;
    color: var(--text-color);
}

.servico__description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.servico__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.servico__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.servico__features i {
    color: var(--secondary-color);
    font-size: 16px;
}
 */
/* ==================== DIFERENCIAIS ==================== */
.diferenciais {
    background: var(--bg-light);
}

.diferenciais__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.diferencial__card {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all var(--transition-normal);
}

.diferencial__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.diferencial__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 50%;
    margin: 0 auto 24px;
}

.diferencial__icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.diferencial__title {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 12px;
    color: var(--text-color);
}

.diferencial__description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ==================== MARCAS ==================== */
.marcas {
    background: var(--bg-color);
    padding: 60px 0;
}

.marcas__title {
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-color);
}

.marcas__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
}

.marca__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.marca__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.marca__item i {
    font-size: 40px;
    color: var(--primary-color);
}

.marca__item span {
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
}

/* ==================== DEPOIMENTOS ==================== */
.depoimentos {
    background: var(--bg-light);
}

.depoimentos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.depoimento__card {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.depoimento__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.depoimento__rating i {
    color: #fbbf24;
    font-size: 18px;
}

.depoimento__text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.depoimento__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.depoimento__author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
}

.depoimento__author-avatar i {
    font-size: 24px;
    color: #ffffff;
}

.depoimento__author-name {
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
    margin-bottom: 4px;
}

.depoimento__author-location {
    font-size: 14px;
    color: var(--text-lighter);
}

/* ==================== FAQ ==================== */
.faq {
    background: var(--bg-color);
}

.faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

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

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--bg-color);
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-normal);
}

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

.faq__question i {
    font-size: 20px;
    color: var(--primary-color);
    transition: transform var(--transition-normal);
}

.faq__item.active .faq__question i {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq__item.active .faq__answer {
    max-height: 500px;
}

.faq__answer p {
    padding: 0 24px 20px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ==================== CONTATO ==================== */
.contato {
    background: var(--bg-light);
}

.contato__container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contato__info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contato__info-item {
    display: flex;
    gap: 20px;
}

.contato__info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contato__info-icon i {
    font-size: 22px;
    color: #ffffff;
}

.contato__info-content h3 {
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
    margin-bottom: 8px;
}

.contato__info-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.contato__social h3 {
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
    margin-bottom: 16px;
}

.contato__social-links {
    display: flex;
    gap: 12px;
}

.contato__social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--primary-color);
    font-size: 20px;
    transition: all var(--transition-normal);
}

.contato__social-link:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

.contato__form {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form__group {
    margin-bottom: 24px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form__label {
    display: block;
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
    margin-bottom: 8px;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--text-color);
    transition: all var(--transition-normal);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    text-align: center;
    display: none;
}

.form__message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary-dark);
    border: 1px solid var(--secondary-color);
}

.form__message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid #ef4444;
}

/* ==================== CTA ==================== */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 80px 0;
}

.cta__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta__title {
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    color: #ffffff;
    margin-bottom: 12px;
}

.cta__description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.cta__buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.cta__buttons .button--primary {
    background: #ffffff;
    color: var(--primary-color);
}

.cta__buttons .button--primary:hover {
    background: var(--bg-light);
}

.cta__buttons .button--secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.cta__buttons .button--secondary:hover {
    background: #ffffff;
    color: var(--primary-color);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-dark);
    color: #ffffff;
    padding: 60px 0 24px;
}

.footer__container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: #ffffff;
    margin-bottom: 16px;
}

.footer__logo i {
    font-size: 28px;
    color: var(--primary-light);
}

.footer__description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: #ffffff;
    font-size: 18px;
    transition: all var(--transition-normal);
}

.footer__social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer__title {
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    color: #ffffff;
    margin-bottom: 20px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--primary-light);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__contact li {
    display: flex;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer__contact i {
    color: var(--primary-light);
    margin-top: 2px;
}

.footer__bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer__copy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ==================== SCROLL TO TOP ==================== */
.scrolltop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
}

.scrolltop.show {
    opacity: 1;
    visibility: visible;
}

.scrolltop:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    font-size: 32px;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-normal);
    z-index: 999;
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ==================== RESPONSIVE ==================== */
@media screen and (max-width: 1024px) {
    .section__title {
        font-size: 36px;
    }

    .hero__title {
        font-size: 46px;
    }

    .hero__container {
        gap: 40px;
    }

    .hero__icon {
        font-size: 220px;
    }

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

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

    .cta__container {
        flex-direction: column;
        text-align: center;
    }

    .cta__buttons {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --header-height: 70px;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 80px 32px 32px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-slow);
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .nav__link {
        font-size: 18px;
    }

    .nav__close {
        display: block;
        position: absolute;
        top: 24px;
        right: 24px;
    }

    .nav__toggle {
        display: block;
    }

    .section__title {
        font-size: 32px;
    }

    .section__description {
        font-size: 16px;
    }

    .hero {
        padding-top: calc(var(--header-height) + 40px);
    }

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

    .hero__title {
        font-size: 36px;
    }

    .hero__description {
        font-size: 18px;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .hero__icon {
        font-size: 180px;
    }

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

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

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

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

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

    .cta__title {
        font-size: 28px;
    }

    .cta__description {
        font-size: 16px;
    }

    .cta__buttons {
        flex-direction: column;
        width: 100%;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .scrolltop,
    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 20px;
    }

    .whatsapp-float {
        bottom: 90px;
        font-size: 28px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section__title {
        font-size: 28px;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero__icon {
        font-size: 150px;
    }

    .button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .contato__form {
        padding: 24px;
    }
}
