/* ===== VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #00A859;
    --primary-dark: #008F4D;
    --primary-light: #00C66E;
    --secondary-color: #000000;
    --secondary-dark: #1a1a1a;
    
    --dark-color: #1F2937;
    --dark-light: #374151;
    --text-color: #4B5563;
    --text-light: #6B7280;
    
    --white-color: #FFFFFF;
    --light-bg: #F9FAFB;
    --border-color: #E5E7EB;
    
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --danger-color: #EF4444;
    
    /* Typography */
    --body-font: 'Inter', sans-serif;
    --heading-font: 'Poppins', sans-serif;
    
    --h1-size: 3.5rem;
    --h2-size: 2.5rem;
    --h3-size: 1.75rem;
    --h4-size: 1.25rem;
    --normal-size: 1rem;
    --small-size: 0.875rem;
    
    /* Spacing */
    --header-height: 5rem;
    --section-padding: 6rem 0;
    
    /* Animation */
    --transition: all 0.3s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-size);
    color: var(--text-color);
    background-color: var(--white-color);
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: var(--heading-font);
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
h4 { font-size: var(--h4-size); }

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

ul {
    list-style: none;
}

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

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

/* ===== REUSABLE CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__subtitle {
    display: block;
    font-size: var(--small-size);
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section__title {
    font-size: var(--h2-size);
    margin-bottom: 1rem;
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: var(--transition);
    font-size: var(--normal-size);
}

.button--primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: var(--shadow-md);
}

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

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

.button--secondary:hover {
    background-color: var(--light-bg);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.button--large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

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

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo-img {
    height: 5rem;
    width: auto;
    object-fit: contain;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

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

.nav__link:hover,
.nav__link.active-link {
    color: var(--primary-color);
}

.nav__link:hover::after,
.nav__link.active-link::after {
    width: 100%;
}

.nav__link--button {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
}

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

.nav__link--button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 168, 89, 0.25) 100%);
    z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 2rem;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}



.hero__title {
    font-size: 4.5rem;
    margin-bottom: 0;
    line-height: 1.1;
    color: var(--white-color);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease;
}

.hero__subtitle-text {
    font-size: 1.75rem;
    color: var(--white-color);
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero__buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero__buttons .button {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.hero__buttons .button--secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-3px);
}

.hero__features {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--white-color);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.hero__feature:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 168, 89, 0.4);
}

.hero__feature i {
    font-size: 1.75rem;
    color: var(--white-color);
}

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

.hero__scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero__scroll-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    transition: var(--transition);
}

.hero__scroll-button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

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

/* ===== SOBRE SECTION ===== */
.sobre {
    background-color: var(--white-color);
}

.sobre__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.sobre__text {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

.sobre__stats {
    display: grid;
    gap: 2rem;
    margin-top: 2.5rem;
}

.stat__card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 1rem;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.stat__card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    background-color: var(--white-color);
}

.stat__card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 168, 89, 0.1);
    border-radius: 0.75rem;
}

.stat__card > div {
    flex: 1;
}

.stat__card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.stat__card p {
    color: var(--text-color);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.sobre__image {
    position: relative;
}

.sobre__image img {
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.sobre__badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    font-weight: 600;
}

.sobre__badge i {
    font-size: 1.5rem;
}

/* Clientes */
.clientes {
    margin-top: 4rem;
}

.clientes__title {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.clientes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cliente__card {
    text-align: center;
    padding: 2rem;
    background-color: var(--white-color);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    transition: var(--transition);
}

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

.cliente__card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cliente__card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.cliente__card p {
    color: var(--text-light);
}

/* ===== PRODUTOS SECTION ===== */
.produtos {
    background-color: var(--light-bg);
}

/* Imagem dos Produtos */
.produtos__image {
    position: relative;
    margin-bottom: 3rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.produtos__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.produtos__image-label {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.label {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label--s10 {
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--white-color);
}

.label--s500 {
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--white-color);
}

.produto__selo {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    border-radius: 2rem;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4),
                0 2px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid #FFD700;
    z-index: 10;
    transition: var(--transition);
}

.produto__selo:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5),
                0 4px 12px rgba(0, 0, 0, 0.2);
}

.produto__selo .selo__icon {
    font-size: 1.25rem;
    font-weight: 900;
    color: #1a1a1a;
    background: #FFD700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #1a1a1a;
}

.produtos__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.produto__card {
    background-color: var(--white-color);
    padding: 2.5rem;
    padding-top: 3.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    overflow: visible;
}

.produto__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}



.produto__icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(0, 168, 89, 0.15);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.produto__icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.produto__title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.produto__description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.produto__features {
    margin-bottom: 2rem;
}

.produto__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-color);
}

.produto__features i {
    color: var(--success-color);
    font-size: 1.125rem;
}

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

.servicos__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.servico__card {
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 1rem;
    transition: var(--transition);
    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(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.servico__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background-color: var(--white-color);
}

.servico__number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.servico__icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary-color);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.servico__icon i {
    font-size: 1.75rem;
    color: var(--white-color);
}

.servico__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.servico__description {
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA */
.servicos__cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 3rem;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow-xl);
}

.cta__content h3 {
    font-size: 1.75rem;
    color: var(--white-color);
    margin-bottom: 0.5rem;
}

.cta__content p {
    color: rgba(255, 255, 255, 0.9);
}

.servicos__cta .button {
    background-color: var(--white-color);
    color: var(--primary-color);
    flex-shrink: 0;
}

.servicos__cta .button:hover {
    background-color: var(--light-bg);
    transform: scale(1.05);
}

.button--whatsapp {
    background-color: #25D366 !important;
    color: var(--white-color) !important;
}

.button--whatsapp:hover {
    background-color: #20BA5A !important;
}

/* ===== ATUAÇÃO SECTION ===== */
.atuacao {
    background-color: var(--white-color);
}

.section__description {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

/* Hero da Atuação */
.atuacao__hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-xl);
}

.atuacao__hero-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero__stat {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat__icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat__icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.stat__info {
    display: flex;
    flex-direction: column;
}

.stat__number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white-color);
    line-height: 1;
    font-family: var(--heading-font);
}

.stat__label {
    font-size: 1rem;
    color: var(--white-color);
    font-weight: 600;
    margin-top: 0.25rem;
}

.hero__divider {
    width: 2px;
    height: 4rem;
    background-color: rgba(0, 0, 0, 0.2);
}

/* Estados Grid */
.estados__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.estado__box {
    background-color: var(--white-color);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.estado__box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0.05;
    border-radius: 0 0 0 100%;
}

.estado__box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-left-width: 8px;
}

.estado__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.estado__header i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.estado__header h3 {
    font-size: 2rem;
    margin: 0;
}

.estado__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: var(--small-size);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.estado__badge i {
    font-size: 1rem;
}

.estado__text {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.estado__features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.estado__features span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--light-bg);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: var(--small-size);
    font-weight: 500;
    color: var(--text-color);
}

.estado__features i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

/* Diferenciais */
.atuacao__diferenciais {
    background-color: var(--light-bg);
    padding: 3rem;
    border-radius: 1.5rem;
}

.diferenciais__title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.diferencial__card {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.diferencial__icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.diferencial__icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.diferencial__card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.diferencial__card p {
    color: var(--text-light);
    font-size: var(--small-size);
    line-height: 1.6;
}

/* ===== CONTATO SECTION ===== */
.contato {
    background-color: var(--white-color);
}

.contato__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contato__info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.contato__description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contato__details {
    margin-bottom: 2rem;
}

.detail__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.detail__item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.detail__icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail__icon i {
    font-size: 1.25rem;
    color: var(--white-color);
}

.detail__content h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.detail__content p {
    color: var(--text-light);
    font-size: var(--small-size);
}

.contato__razao {
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary-color);
}

.contato__razao h4 {
    margin-bottom: 0.75rem;
}

.contato__razao p {
    color: var(--text-color);
}

.contato__razao .cnpj {
    color: var(--text-light);
    font-size: var(--small-size);
    margin-top: 0.25rem;
}

/* Form */
.contato__form {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.contato__form h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.contato__form > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form__group {
    margin-bottom: 1.5rem;
}

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

.form__group label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: var(--normal-size);
    transition: var(--transition);
    background-color: var(--white-color);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

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

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 4rem 0 2rem;
}

/* Informações da Empresa em Destaque */
.footer__empresa {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 3rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.footer__logo {
    flex-shrink: 0;
}

.footer__logo img {
    height: 5rem;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.empresa__info {
    flex: 1;
}

.empresa__razao {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.empresa__cnpj {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.empresa__descricao {
    color: var(--white-color);
    line-height: 1.7;
    font-size: 1rem;
}

.footer__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__links h4 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer__links ul li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer__links i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

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

.footer__bottom p {
    margin-bottom: 0.5rem;
}

.footer__bottom i {
    color: var(--danger-color);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 4rem;
    height: 4rem;
    background-color: #25D366;
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
}

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

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 968px) {
    :root {
        --h1-size: 2.5rem;
        --h2-size: 2rem;
        --h3-size: 1.5rem;
        --section-padding: 4rem 0;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white-color);
        box-shadow: var(--shadow-xl);
        padding: 6rem 2rem 2rem;
        transition: var(--transition);
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav__link--button {
        display: inline-block;
        text-align: center;
    }
    
    .nav__toggle,
    .nav__close {
        display: block;
    }
    
    .nav__close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .hero__title {
        font-size: 3rem;
    }
    
    .hero__subtitle-text {
        font-size: 1.25rem;
    }
    
    .hero__features {
        gap: 1.5rem;
    }
    
    .nav__logo-img {
        height: 4rem;
    }
    
    .sobre__container,
    .contato__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .produtos__container {
        grid-template-columns: 1fr;
    }
    
    .produtos__image img {
        height: 350px;
    }
    
    .produtos__image-label {
        bottom: 1rem;
        gap: 1rem;
    }
    
    .label {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .servicos__cta {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__empresa {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .footer__logo img {
        height: 4rem;
    }
    
    .empresa__razao {
        font-size: 1.25rem;
    }
    
    .empresa__cnpj {
        font-size: 1rem;
    }
    
    .footer__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form__row {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    :root {
        --h1-size: 2rem;
        --h2-size: 1.75rem;
        --h3-size: 1.25rem;
    }
    
    .hero__title {
        font-size: 2.25rem;
    }
    
    .hero__subtitle-text {
        font-size: 1.125rem;
    }
    
    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__buttons .button {
        width: 100%;
    }
    
    .hero__features {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero__feature {
        width: 100%;
        justify-content: center;
    }
    
    .nav__logo-img {
        height: 3.5rem;
    }
    
    .button {
        width: 100%;
        justify-content: center;
    }
    
    .produtos__image img {
        height: 250px;
    }
    
    .produto__selo {
        font-size: 0.6rem;
        padding: 0.5rem 0.875rem;
        right: 1rem;
        top: -10px;
    }
    
    .produto__selo .selo__icon {
        font-size: 1rem;
        width: 20px;
        height: 20px;
    }
    
    .produtos__image-label {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .label {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .clientes__grid,
    .servicos__container {
        grid-template-columns: 1fr;
    }
    
    .atuacao__hero-content {
        flex-direction: column;
    }
    
    .hero__divider {
        width: 80%;
        height: 2px;
    }
    
    .hero__stat {
        width: 100%;
        justify-content: center;
    }
    
    .estados__grid {
        grid-template-columns: 1fr;
    }
    
    .diferenciais__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .atuacao__hero {
        padding: 2rem 1.5rem;
    }
    
    .stat__number {
        font-size: 2.5rem;
    }
    
    .stat__label {
        font-size: 0.875rem;
    }
    
    .estado__box {
        padding: 2rem 1.5rem;
    }
    
    .estado__header h3 {
        font-size: 1.5rem;
    }
    
    .atuacao__diferenciais {
        padding: 2rem 1.5rem;
    }
    
    .diferenciais__grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.25rem;
        left: 1rem;
        bottom: 1rem;
    }
    
    .scroll-top {
        right: 1rem;
        bottom: 1rem;
        width: 3rem;
        height: 3rem;
    }
}