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

/* Reset e variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #C41E3A;
    --secondary-color: #8B0000;
    --dark-bg: #1a0a0a;
    --dark-red: #2d0a0f;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #333;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --padding-horizontal: 40px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #F0F0F0;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--padding-horizontal);
}

/* Header */
.header {
    background: var(--white);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 32px;
}

.logo-mobile {
    display: none;
}

.logo-desktop {
    display: block;
}

.nav-menu {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-menu .btn-primary {
    display: none;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animação do X quando menu está aberto */
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-budget-btn {
    display: none;
}

.desktop-budget-btn {
    display: inline-flex;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: #BF0001;
    color: var(--white);
}

.btn-primary:hover {
    background: #8B0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(191, 0, 1, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('fotos/fundo_imagem1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    padding: 80px 0;
    text-align: center;
}

.hero-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 24px;
    border: 1px solid #FF0008;
    border-radius: 8px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 62px;
    line-height: 64px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #F0F0F0;
    margin-bottom: 20px;
}

.hero-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.02em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero {
    padding: 8px 24px;
    min-width: 185px;
    height: 40px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Section Titles */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #1A1A1A;
    margin-bottom: 24px;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #61646B;
    margin-bottom: 40px;
}

.section-subtitle.white {
    color: rgba(255, 255, 255, 0.8);
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: var(--light-gray);
}

.portfolio .section-title,
.portfolio .section-subtitle {
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid #C0C0C0;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.card-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.card-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0;
    color: #61646B;
}

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

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background: #F0F0F0;
}

.clients-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -0.02em;
    text-align: center;
}

.clients-section.dark {
    background-image: url('fotos/fundo_imagem2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    position: relative;
}

.clients-section.dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.clients-section.dark .container {
    position: relative;
    z-index: 1;
}

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

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.client-card {
    width: 187.33px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #F0F0F0;
}

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

.about-image img {
    width: 530px;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.02em;
    color: #1A1A1A;
    text-align: left;
}

.about-text p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #BF0001;
}

.stat-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Two Fronts Section */
.two-fronts {
    padding: 100px 0;
    background: #F0F0F0;
}

.two-fronts-content {
    display: grid;
    grid-template-columns: 70fr 30fr;
    gap: 60px;
    align-items: center;
}

.two-fronts-image img {
    width: 530px;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.two-fronts .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.02em;
    color: #1A1A1A;
    text-align: left;
}

.two-fronts-text p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.02em;
    color: #1A1A1A;
}

.two-fronts-paragraph {
    margin-bottom: 20px;
}

.two-fronts-paragraph:last-of-type {
    margin-bottom: 0;
}

.two-fronts-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.tag {
    background: transparent;
    color: #0931AA;
    padding: 0;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0;
    border: none;
}

.tag:not(:last-child)::after {
    content: '•';
    margin-left: 8px;
    color: #0931AA;
}

.two-fronts .btn-primary {
    background: #0931AA;
}

.two-fronts .btn-primary:hover {
    background: #072080;
    box-shadow: 0 4px 12px rgba(9, 49, 170, 0.3);
}

/* Certificações Section */
.certificacoes {
    background: #F0F0F0;
}

.certificacoes .two-fronts-content {
    grid-template-columns: 1fr 1fr;
}

.certs-carousel-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    margin-top: 25px;
    position: relative;
}

.certs-carousel {
    display: flex;
    width: 200%;
    height: auto;
    min-height: 100px;
    animation: scroll-certs 25s linear infinite;
    overflow: visible;
    align-items: center;
    will-change: transform;
}

@keyframes scroll-certs {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.certs-slide-item {
    flex: 0 0 11.11%;
    padding: 5px;
    position: relative;
    min-width: 11.11%;
    max-width: 11.11%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.certs-slide-item img {
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid #e1e5e9;
    transition: all 0.3s ease;
    background: #ffffff;
    padding: 10px;
}

/* Clients Section 2 - Grid Style */
.clients-section-2 {
    padding: 80px 0;
    background-image: url('fotos/fundo_imagem2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    position: relative;
}

.clients-section-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.clients-section-2 .container {
    position: relative;
    z-index: 1;
}

.clients-section-2 .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #F0F0F0;
    margin-bottom: 16px;
}

.clients-section-2 .section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #F0F0F0;
    margin-bottom: 40px;
}

.clients-grid-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.client-card-2 {
    width: 200px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.client-card-2:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.client-card-2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Values Section */
.values {
    padding: 100px 0;
}

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

.values-image img {
    width: 80%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.values .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.02em;
    color: #1A1A1A;
    text-align: left;
    width: 620px;
}

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

.value-item {
    display: flex;
    gap: 16px;
    align-items: center;
    width: 620px;
    height: 96px;
    padding: 16px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 0.5px solid #09080880;
}

.value-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background: #F9E6E6;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon img {
    width: 75%;
    height: 75%;
    object-fit: contain;
}

.value-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0;
    color: #0A111F;
    margin-bottom: 8px;
}

.value-content p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.02em;
    color: #404040;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #CB171D;
    color: var(--white);
    text-align: center;
}

.cta-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.cta-section .section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    width: 221px;
    height: 48px;
    padding: 8px 24px;
    gap: 16px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-btn-orcamento {
    background: #FFFFFF;
    color: #BF0001;
    border: none;
}

.cta-btn-orcamento:hover {
    background: #F0F0F0;
    color: #BF0001;
}

.cta-btn-whatsapp {
    background: #700B14;
    color: #FFFFFF;
    border: none;
}

.cta-btn-whatsapp:hover {
    background: #5A0910;
    color: #FFFFFF;
}

/* Contact Form */
.contact-form {
    padding: 100px 0;
    background: #F0F0F0;
}

.contact-form .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #1A1A1A;
    margin-bottom: 16px;
}

.contact-form .section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #61646B;
    margin-bottom: 48px;
}

.form {
    max-width: 868px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 24px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #404040;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    height: 48px;
    padding: 12px 32px;
    border-radius: 16px;
    border: 1px solid #61646B;
    background: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.02em;
    color: #61646B;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group textarea {
    height: auto;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.02em;
    color: #61646B;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form>.form-group {
    width: 100%;
    margin-bottom: 24px;
}

.form-checkbox {
    display: flex;
    gap: 12px;
    margin: 24px 0;
    align-items: flex-start;
    width: 100%;
}

.form-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #CB171D;
    border-radius: 50%;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.form-checkbox input[type="checkbox"]:checked {
    background: #CB171D;
}

.form-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
}

.form-checkbox label {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #404040;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    max-width: 868px;
    height: 48px;
    padding: 8px 24px;
    gap: 16px;
    border-radius: 16px;
    background: #BF0001;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit:hover {
    background: #A00001;
}

/* Footer */
.site-footer {
    background: #1A1A1A;
    color: #ffffff;
    padding: 60px 0 0;
}

/* Hide mobile footer on desktop */
.footer-mobile {
    display: none;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 15px;
    align-items: start;
    margin-bottom: 10px;
}

.footer__brand {
    margin: 0;
}

.footer__logo {
    margin-bottom: 16px;
}

.footer__logo img {
    max-width: 280px;
    height: auto;
}

.footer__brand p {
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.5;
    font-size: 14px;
}

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

.footer__socials .social-link {
    width: 56px;
    height: 56px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer__socials .social-link:hover {
    background: #CB171D;
}

.footer__socials .social-link img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer__col h4 {
    color: #FFFFFF;
    margin: 2px 0 0 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0%;
}

.footer__col ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.footer__col ul li {
    margin-bottom: 12px;
}

.footer__col ul li a {
    color: #F5F5F5;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0%;
}

.footer__col ul li a:hover {
    color: #CB171D;
}

.footer__contact h4 {
    color: #FFFFFF;
    margin: 2px 0 16px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0%;
}

.footer-desktop .footer__contact h4 {
    display: none;
}

.footer__contact .contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: center;
}

.footer__contact .contact-icon {
    font-size: 16px;
    color: #CB171D;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.footer__contact .contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer__contact .contact-info {
    color: #ffffff;
    line-height: 1.5;
    font-size: 14px;
}

.footer__contact .contact-info strong {
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0%;
}

.footer__contact .contact-info .contact-address {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.02em;
}

.footer__contact .contact-info .contact-phone {
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0%;
}

.footer__contact .contact-info .contact-email {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.02em;
}

.footer__divider {
    height: 1px;
    background: #333333;
    margin: 0;
}

.footer__copy {
    text-align: center;
    padding: 20px 0;
    color: #ffffff;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    :root {
        --padding-horizontal: 30px;
    }

    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

    .about-content,
    .two-fronts-content,
    .values-content {
        grid-template-columns: 1fr;
    }

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

    .certificacoes.two-fronts {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --padding-horizontal: 20px;
    }

    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
    }

    .navbar {
        flex-wrap: wrap;
        position: relative;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.mobile-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .desktop-budget-btn {
        display: none;
    }

    .mobile-budget-btn {
        display: inline-flex;
        width: 100%;
        justify-content: center;
    }

    .hero {
        min-height: 500px;
        padding: 40px 0;
    }

    .hero .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 32px;
        line-height: 38px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 24px;
    }

    .section-title {
        font-size: 28px;
        line-height: 34px;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .portfolio {
        padding: 60px 0;
    }

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

    .card {
        padding: 12px 24px;
    }

    .card-header {
        gap: 0px;
    }

    .card-icon {
        width: 48px;
        height: 48px;
        margin-left: -8px;
    }

    .card-icon img {
        width: 32px;
        height: 32px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-description {
        font-size: 14px;
        margin-top: -10px;

    }

    .section-cta {
        display: flex;
        justify-content: center;
    }

    .section-cta .btn-primary {
        font-size: 14px;
        width: auto;
    }

    .section-cta .btn-primary img {
        width: 16px;
        height: 16px;
    }

    .section-cta .btn-primary svg {
        width: 16px;
        height: 16px;
    }

    .about {
        padding: 60px 0 0 0;
    }

    .two-fronts {
        padding: 60px 0 60px 0;
    }

    .about-content,
    .two-fronts-content,
    .values-content {
        gap: 20px;
    }

    .two-fronts-content {
        flex-direction: column;
    }

    .two-fronts-image {
        order: 1;
    }

    .two-fronts-text {
        order: 2;
        display: flex;
        flex-direction: column;
    }

    .two-fronts-text h2 {
        order: 1;
    }

    .two-fronts-paragraph {
        order: 2;
    }

    .two-fronts-tags {
        display: none;
    }

    .two-fronts .btn-primary {
        order: 4;
    }

    .about-image img,
    .values-image img {
        width: 100%;
        max-height: 180px;
        object-fit: cover;
        border-radius: 12px;
    }

    .two-fronts-image img {
        width: 100%;
        max-height: 220px;
        object-fit: cover;
        border-radius: 12px;
    }

    .about-text h2,
    .two-fronts-text h2 {
        font-size: 20px;
        line-height: 26px;
        text-align: left;
        margin-bottom: 12px;
    }

    .two-fronts-text p,
    .two-fronts-paragraph {
        font-size: 14px !important;
        line-height: 20px !important;
        margin-bottom: 12px;
    }

    .two-fronts .btn-primary {
        font-size: 14px;
        padding: 6px 16px;
        width: auto;
        align-self: flex-start;
        margin-top: 16px;
    }

    .two-fronts .btn-primary svg {
        width: 14px;
        height: 14px;
    }

    .about .section-title {
        font-size: 22px;
        line-height: 28px;
    }

    .about-text p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 16px;
    }

    .about-stats {
        display: none;
    }

    .about-features,
    .two-fronts-features {
        gap: 16px;
    }

    .feature-item {
        padding: 16px;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
    }

    .values .section-title {
        width: 100%;
        text-align: center;
        font-size: 28px;
        line-height: 32px;
    }

    .value-item {
        width: 100%;
        height: auto;
        flex-direction: row;
        text-align: left;
        padding: 20px;
        gap: 16px;
        align-items: flex-start;
    }

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

    .form {
        padding: 0;
    }

    .btn-submit {
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: auto;
    }

    .carousel-btn {
        display: none;
    }

    /* Certificações section mobile */
    .certificacoes.two-fronts {
        padding: 40px 0;
    }

    .certificacoes .two-fronts-content {
        max-width: 100%;
        overflow: hidden;
    }

    .certificacoes .two-fronts-image {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .certs-carousel-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin-top: 20px;
    }

    .certs-carousel {
        display: flex;
        width: 200%;
        min-height: 80px;
        animation: scroll-certs 25s linear infinite;
    }

    .certs-slide-item {
        flex: 0 0 11.11%;
        min-width: 11.11%;
        max-width: 11.11%;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        box-sizing: border-box;
    }

    .certs-slide-item img {
        max-width: 90%;
        max-height: 90%;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .clients-section {
        padding: 40px 0;
    }

    .clients-section .section-title {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 16px;
    }

    .clients-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px;
        max-width: 100%;
        margin-top: 24px;
    }

    .client-card {
        width: 100%;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        box-sizing: border-box;
        overflow: hidden;
    }

    .client-card img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .client-card:nth-child(n+4) {
        display: none;
    }

    .clients-section-2 {
        padding: 40px 0;
    }

    .clients-section-2 .section-title {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 16px;
    }

    .clients-section-2 .section-subtitle {
        display: none;
    }

    .clients-grid-2 {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px;
        max-width: 100%;
        margin-top: 24px;
    }

    .client-card-2 {
        width: 100%;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        box-sizing: border-box;
        overflow: hidden;
    }

    .client-card-2 img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .client-card-2:nth-child(n+4) {
        display: none;
    }

    /* Hide desktop footer, show mobile footer */
    .footer-desktop {
        display: none !important;
    }

    .footer-mobile {
        display: block !important;
    }

    .footer-mobile .container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .footer__brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer__brand p {
        display: block;
        font-size: 14px;
        line-height: 20px;
        margin: 0;
    }

    .footer__logo img {
        max-width: 200px;
        height: auto;
    }

    .footer__socials {
        display: flex;
        gap: 16px;
    }

    .footer__socials .social-link {
        width: 48px;
        height: 48px;
        background: transparent;
    }

    .footer__socials .social-link img {
        width: 100%;
        height: 100%;
    }

    /* Side by side columns for Links Úteis and Políticas */
    .footer__cols-mobile {
        display: flex;
        gap: 20px;
    }

    .footer__cols-mobile .footer__col {
        flex: 1;
    }

    .footer__contact h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 16px;
        color: #FFFFFF;
    }
}

@media (max-width: 500px) {
    :root {
        --padding-horizontal: 16px;
    }

    .hero {
        min-height: 400px;
    }

    .hero-content {
        padding: 30px 0;
    }

    .hero-title {
        font-size: 24px;
        line-height: 24px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        font-size: 10px;
        padding: 5px 14px;
    }

    .hero-description {
        font-size: 12px;
        line-height: 18px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 10px;
        margin-top: 16px;
        margin-bottom: 16px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        font-size: 12px;
        padding: 8px 10px;
        min-width: 100px;
        height: 36px;
    }

    .btn-hero {
        font-size: 14px;
        padding: 8px 12px;
        width: auto;
        height: auto;
    }

    .btn-hero svg {
        width: 16px;
        height: 16px;
    }

    .btn-primary svg {
        width: 16px !important;
        height: 16px !important;
    }

    .section-title {
        font-size: 24px;
        line-height: 30px;
    }

    .two-fronts .section-title {
        font-size: 26px;
        line-height: 32px;
    }

    .section-subtitle {
        font-size: 14px;
        line-height: 20px;
    }

    .contact-form .section-title {
        font-size: 28px;
        line-height: 34px;
    }

    .contact-form .section-subtitle {
        font-size: 16px;
        line-height: 22px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }

    .btn-submit {
        font-size: 18px;
        height: 56px;
    }

    .cards-grid {
        gap: 16px;
    }

    .card {
        padding: 10px 20px;
    }

    .value-item {
        padding: 16px;
    }

    .value-icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .value-content {
        flex: 1;
        text-align: left;
    }

    .clients-grid {
        gap: 12px;
    }

    .client-card {
        width: 100%;
        height: 60px;
    }

    .clients-grid-2 {
        gap: 12px;
    }

    .client-card-2 {
        width: 100%;
        height: 60px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 20px;
        font-size: 14px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-checkbox label {
        font-size: 14px;
        line-height: 20px;
    }

    /* Certificações section - telas pequenas */
    .certificacoes.two-fronts {
        padding: 30px 0;
    }

    .certificacoes .two-fronts-content {
        max-width: 100%;
        overflow: hidden;
    }

    .certificacoes .two-fronts-image {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .certs-carousel-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin-top: 16px;
    }

    .certs-carousel {
        display: flex;
        width: 200%;
        min-height: 60px;
        animation: scroll-certs 25s linear infinite;
    }

    .certs-slide-item {
        flex: 0 0 11.11%;
        min-width: 11.11%;
        max-width: 11.11%;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        box-sizing: border-box;
    }

    .certs-slide-item img {
        max-width: 85%;
        max-height: 85%;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        font-size: 14px;
    }

    .about {
        padding: 60px 0 0 0;
    }

    .two-fronts {
        padding: 60px 0 60px 0;
    }

    .values,
    .contact-form {
        padding: 60px 0;
    }

    .footer__logo img {
        max-width: 160px;
    }

    .footer__socials .social-link {
        width: 40px;
        height: 40px;
    }

    .footer__socials .social-link img {
        width: 28px;
        height: 28px;
    }

    .certificacoes {
        display: none;
    }
}