/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Variáveis CSS */
:root {
    --primary-color: #0052CC;
    --primary-dark: #0047B3;
    --primary-light: #0066FF;
    --secondary-color: #F4F5F7;
    --accent-color: #00B8D9;
    --text-dark: #172B4D;
    --text-light: #6B778C;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray: #E1E5E9;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
    line-height: 1.5;
}

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

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

/* Botão especial para fundos escuros/azuis */
.btn--light {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    font-weight: 600;
}

.btn--light:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Botão do formulário com destaque especial */
.btn--form {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
}

.btn--form:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 82, 204, 0.4);
}

.btn--full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex: 1;
}

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

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

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

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

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    flex-shrink: 0;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* Animação do menu hambúrguer */
.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Banner Carousel Section */
.banner-carousel {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: block;
    margin-top: 0;
}

main {
    padding-top: 0;
    margin: 0;
    padding: 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.carousel-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    margin: 0;
    padding: 0;
    position: relative;
}

.carousel-slide.active {
    display: block;
    opacity: 1;
}

.carousel-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: top center;
    vertical-align: top;
}

/* Controle de imagens responsivas do carrossel */
.carousel-image--desktop {
    display: none;
}

.carousel-image--mobile {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

@media (min-width: 768px) {
    .carousel-image--desktop {
        display: block;
        object-fit: contain;
        object-position: top center;
        width: 100%;
        height: auto;
    }
    
    .carousel-image--mobile {
        display: none;
    }
    
    .carousel-image {
        object-fit: contain;
        object-position: top center;
    }
}

@media (min-width: 1200px) {
    .carousel-image {
        object-fit: contain;
        object-position: top center;
    }
    
    .carousel-image--desktop {
        object-fit: contain;
        object-position: top center;
    }
}

/* Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--text-dark);
}

.carousel-arrow:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-arrow--prev {
    left: 20px;
}

.carousel-arrow--next {
    right: 20px;
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.carousel-indicator.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

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

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section__subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Sobre Section */
.sobre {
    background: var(--gray-light);
}

.sobre__content {
    margin-bottom: 4rem;
}

.sobre__text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.sobre__destaque {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-hover);
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.sobre__destaque h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--white) !important;
}

.sobre__destaque p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.95;
    color: var(--white) !important;
}


.sobre__historia,
.sobre__diferencial {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.sobre__historia:hover,
.sobre__diferencial:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.sobre__historia h4,
.sobre__diferencial h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sobre__historia p,
.sobre__diferencial p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

.sobre__historia strong,
.sobre__diferencial strong {
    color: var(--primary-color);
    font-weight: 600;
}

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

.valor__card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.valor__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.valor__card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.valor__card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Por que ser Revendedor Section */
.porque-revendedor {
    background: var(--white);
}

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

.beneficio__card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

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

.beneficio__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    flex-shrink: 0;
}

.beneficio__icon svg {
    width: 50px;
    height: 50px;
    display: block;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.beneficio__card:hover .beneficio__icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 82, 204, 0.3);
}

.beneficio__card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.beneficio__card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

.cta__section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--white);
}

.cta__content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta__content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn--large {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Nossos Diferenciais Section */
.diferenciais {
    background: var(--gray-light);
}

.diferenciais__main {
    margin-bottom: 5rem;
}

.diferenciais__quality {
    margin-bottom: 2rem;
}

.diferenciais__subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.diferenciais__subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

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

.diferencial__card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

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

.diferencial__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    flex-shrink: 0;
    position: relative;
}

.diferencial__icon svg {
    display: block;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.diferencial__card:hover .diferencial__icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 82, 204, 0.3);
}

.diferencial__card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.info__item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

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

.info__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.2);
}

.info__content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.info__content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.info__content p strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Produtos Section */
.produtos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.produto__card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.produto__image {
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.produto__placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background-color: #E1E5E9;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.produto__card:hover .produto__placeholder {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

.produto__card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.produto__card p {
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 0;
}

/* Estilos específicos para seção de cabos de carregamento */
.produto__destaque {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: var(--shadow-hover);
}

.destaque__content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.destaque__content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.destaque__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature span:last-child {
    font-weight: 500;
    font-size: 0.95rem;
}

.destaque__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.destaque__image .produto__placeholder {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.produtos__categorias {
    margin-bottom: 4rem;
}

.categorias__title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.categorias__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.produto__card--destaque {
    position: relative;
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 82, 204, 0.15);
}

.produto__badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    z-index: 2;
}

.produto__descricao {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.produto__especificacoes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.espec {
    background: var(--gray-light);
    color: var(--text-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--gray);
}


.produtos__beneficios {
    background: var(--gray-light);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: var(--border-radius);
}

.beneficios__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.beneficios__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

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

.beneficio__item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.beneficio__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.beneficio__item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.beneficio__item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.produtos__cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--white);
    margin-top: 4rem;
}

.produtos__cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.produtos__cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Estandes e Displays Section */
.estandes {
    background: var(--gray-light);
}

.estandes__intro {
    margin-bottom: 3rem;
    text-align: center;
}

.estandes__text {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.estandes__text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.estandes__text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.estandes__text strong {
    color: var(--primary-color);
    font-weight: 600;
}

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

.estande__card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.estande__image {
    height: 200px;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.estande__placeholder {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.placeholder__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.estande__placeholder p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.estande__content {
    padding: 2rem;
}

.estande__content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.estande__content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.estande__features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.estande__features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.estandes__beneficios {
    background: var(--white);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: var(--border-radius);
}

.estandes__beneficios .beneficios__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.estandes__beneficios .beneficios__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

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

.estandes__beneficios .beneficio__item {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.estandes__beneficios .beneficio__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.estandes__beneficios .beneficio__item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.estandes__beneficios .beneficio__item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.estandes__cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--white);
    margin-top: 4rem;
}

.estandes__cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.estandes__cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Revendedor Section */
.revendedor {
    background: var(--gray-light);
}

.revendedor__intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.revendedor__intro p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.revendedor__intro strong {
    color: var(--primary-color);
    font-weight: 600;
}

.revendedor__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.revendedor__info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.revendedor__section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.revendedor__section p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.revendedor__benefits {
    list-style: none;
    margin: 0;
    padding: 0;
}

.revendedor__benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-dark);
    line-height: 1.5;
}

.check-icon {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.revendedor__steps {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.revendedor__steps li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.revendedor__cta {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.revendedor__cta h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.revendedor__cta p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.revendedor__contact-text {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.revendedor__contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.contact__icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact__item span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Formulário */
.revendedor__form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.revendedor__form p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

/* Formulários */
.form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
    background: var(--white);
}

.form__input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

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

/* Contato Section */
.contato__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contato__info {
    display: grid;
    gap: 2rem;
}

.contato__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: var(--border-radius);
}

.contato__icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contato__item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contato__item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contato__item a:hover {
    color: var(--primary-dark);
}

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

/* Footer */
.footer {
    background: var(--white);
    color: var(--text-dark);
    padding: 0;
    border-top: 1px solid var(--gray);
}

/* Footer CTA Section */
.footer__cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer__cta-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer__cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: var(--white);
}

.footer__cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer Main Content */
.footer__main-content {
    padding: 4rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.footer__column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer__brand {
    max-width: 350px;
}

.footer__logo {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.footer__logo .logo-img {
    width: 80px;
    height: 80px;
}

.footer__description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social__link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-light);
    border-radius: 50%;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.social__link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
    border-color: var(--primary-light);
}

.social__link svg {
    width: 20px;
    height: 20px;
}

.footer__title {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer__list li {
    margin: 0;
}

.footer__list a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer__list a svg {
    flex-shrink: 0;
}

.footer__cta-small {
    margin-top: 1rem;
}

/* Footer Bottom */
.footer__bottom {
    background: var(--gray-light);
    padding: 2rem 0;
    border-top: 1px solid var(--gray);
}

.footer__bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer__copyright p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.footer__credits {
    margin-top: 0.5rem;
}

.footer__credits p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.footer__credits a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer__credits a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Botão Outline */
.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 600;
}

.btn--outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Botão Small */
.btn--small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero__title {
        font-size: 3.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.4rem;
    }
    
    .section__title {
        font-size: 3rem;
    }
    
    .section__subtitle {
        font-size: 1.3rem;
    }
}

@media (min-width: 768px) {
    .hero__container {
        grid-template-columns: 1fr 1fr;
    }
    
    .sobre__content {
        margin-bottom: 3rem;
    }
    
    .sobre__destaque {
        padding: 2rem;
    }
    
    .sobre__destaque h3 {
        font-size: 1.5rem;
    }
    
    .sobre__destaque p {
        font-size: 1rem;
    }
    
    .sobre__historia,
    .sobre__diferencial {
        padding: 1.5rem;
    }
    
    .sobre__historia h4,
    .sobre__diferencial h4 {
        font-size: 1.2rem;
    }
    
    .revendedor__content {
        grid-template-columns: 1fr 1fr;
    }
    
    .contato__content {
        grid-template-columns: 1fr 1fr;
    }
    
    .valores__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .beneficios__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .diferenciais__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .produtos__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .produto__destaque {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }
    
    .destaque__features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .beneficios__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .estandes__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .estandes__beneficios .beneficios__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .valores__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .beneficios__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .diferenciais__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .produtos__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .produto__destaque {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .destaque__features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .beneficios__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .estandes__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .estandes__beneficios .beneficios__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .nav__menu {
        display: none;
    }
    
    .nav__logo .logo-text {
        font-size: 1.2rem;
    }
    
    .nav__logo .logo-img {
        width: 35px;
        height: 35px;
    }
    
    /* Melhorar espaçamento do header em mobile */
    .nav {
        padding: 0.5rem 1rem;
        min-height: auto;
    }
    
    .header {
        padding: 0;
    }
    
    .banner-carousel {
        margin-top: 0;
        padding-top: 0;
    }
    
    main {
        margin-top: 0;
        padding-top: 0;
    }
    
    .carousel-image {
        object-fit: contain;
        object-position: top center;
        width: 100%;
        height: auto;
    }
    
    .carousel-image--mobile {
        object-fit: contain;
        object-position: top center;
        width: 100%;
        height: auto;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow--prev {
        left: 10px;
    }
    
    .carousel-arrow--next {
        right: 10px;
    }
    
    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-indicators {
        bottom: 15px;
        padding: 8px;
    }
    
    .carousel-indicator {
        width: 10px;
        height: 10px;
    }
    
    .carousel-indicator.active {
        width: 25px;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .section__subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .valores__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .produtos__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .produto__destaque {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem;
    }
    
    .destaque__content h3 {
        font-size: 1.8rem;
    }
    
    .destaque__content p {
        font-size: 1rem;
    }
    
    .destaque__features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .destaque__image .produto__placeholder {
        width: 150px;
        height: 150px;
    }
    
    .beneficios__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .produto__especificacoes {
        justify-content: center;
    }
    
    
    .produtos__cta {
        padding: 2rem;
    }
    
    .produtos__cta h3 {
        font-size: 1.5rem;
    }
    
    .estandes__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .estandes__text {
        padding: 2rem;
    }
    
    .estandes__text h3 {
        font-size: 1.5rem;
    }
    
    .estandes__text p {
        font-size: 1rem;
    }
    
    .estande__image {
        height: 150px;
    }
    
    .estande__content {
        padding: 1.5rem;
    }
    
    .estande__content h4 {
        font-size: 1.2rem;
    }
    
    .estandes__beneficios .beneficios__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .estandes__cta {
        padding: 2rem;
    }
    
    .estandes__cta h3 {
        font-size: 1.5rem;
    }
    
    .produto__card {
        padding: 1.5rem;
    }
    
    .produto__placeholder {
        width: 100px;
        height: 100px;
    }
    
    .produto__card h3 {
        font-size: 1.2rem;
    }
    
    .beneficios__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .beneficio__card {
        padding: 2rem 1.5rem;
    }
    
    .cta__section {
        padding: 2rem 1.5rem;
    }
    
    .cta__content h3 {
        font-size: 1.5rem;
    }
    
    .cta__content p {
        font-size: 1rem;
    }
    
    .diferenciais__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .diferenciais__info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .revendedor__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .revendedor__intro {
        margin-bottom: 2rem;
    }
    
    .revendedor__info {
        gap: 2rem;
    }
    
    .revendedor__cta {
        padding: 1.5rem;
    }
    
    .form__row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form__group {
        margin-bottom: 1.25rem;
    }
    
    .form__input {
        padding: 14px 16px;
        font-size: 16px; /* Previne zoom no iOS */
    }
    
    .diferencial__card {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .diferencial__icon {
        width: 80px;
        height: 80px;
    }
    
    .diferencial__card h3 {
        font-size: 1.5rem;
    }
    
    .diferenciais__subtitle {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .info__item {
        padding: 2rem 1.5rem;
    }
    
    .info__icon {
        width: 60px;
        height: 60px;
    }
    
    .info__content h4 {
        font-size: 1.2rem;
    }
    
    /* Melhorar espaçamento das seções em mobile */
    .section {
        padding: 50px 0;
    }
    
    .section__header {
        margin-bottom: 3rem;
    }
    
    /* Melhorar grid de produtos em mobile */
    .produtos__grid {
        gap: 1.5rem;
    }
    
    .produto__card {
        margin-bottom: 1rem;
    }
    
    .footer__cta {
        padding: 3rem 0;
    }
    
    .footer__cta-content h3 {
        font-size: 1.8rem;
    }
    
    .footer__cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .footer__cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .footer__cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer__main-content {
        padding: 3rem 0 1.5rem;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer__brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer__social {
        justify-content: center;
    }
    
    .footer__title {
        text-align: center;
    }
    
    .footer__title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer__list {
        align-items: center;
    }
    
    .footer__cta-small {
        text-align: center;
    }
    
    .footer__bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer__legal {
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-text p {
        max-width: none;
    }
    
    /* Melhorar responsividade do hero em mobile */
    .hero {
        padding: 100px 0 60px;
        min-height: 90vh;
    }
    
    .hero__container {
        gap: 2rem;
    }
    
    .hero__content {
        text-align: center;
    }
    
    /* Melhorar responsividade dos cards */
    .valor__card,
    .beneficio__card,
    .diferencial__card {
        margin-bottom: 1rem;
    }
    
    /* Melhorar responsividade dos botões */
    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    .btn--large {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 0 50px;
        min-height: 85vh;
    }
    
    .hero__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section__header {
        margin-bottom: 2.5rem;
    }
    
    .section__title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section__subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .container {
        padding: 0 12px;
    }
    
    /* Melhorar espaçamento em telas pequenas */
    .nav__menu {
        padding: 0.2rem 0.5rem !important;
    }
    
    .nav__link {
        font-size: 0.85rem !important;
        padding: 0.25rem 0 !important;
    }
    
    /* Melhorar responsividade dos formulários */
    .form {
        padding: 1.5rem;
    }
    
    .form__input {
        padding: 12px 14px;
        font-size: 16px;
    }
    
    /* Melhorar responsividade dos cards */
    .valor__card,
    .beneficio__card,
    .diferencial__card,
    .produto__card {
        padding: 1.25rem;
    }
    
    /* Melhorar responsividade dos botões */
    .btn {
        padding: 12px 20px;
        font-size: 14px;
        max-width: 280px;
    }
    
    .valores__grid {
        gap: 1rem;
    }
    
    .valor__card {
        padding: 1.5rem;
    }
    
    .valor__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .valor__card h3 {
        font-size: 1.3rem;
    }
    
    .beneficios__grid {
        gap: 1rem;
    }
    
    .beneficio__card {
        padding: 1.5rem;
    }
    
    .beneficio__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .beneficio__icon svg {
        width: 40px;
        height: 40px;
        display: block;
        margin: 0;
        padding: 0;
        flex-shrink: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        padding: 0;
    }
    
    .beneficio__card h3 {
        font-size: 1.3rem;
    }
    
    .diferenciais__grid {
        gap: 1rem;
    }
    
    .diferencial__card {
        padding: 1.5rem;
    }
    
    .diferencial__icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .diferencial__card h3 {
        font-size: 1.4rem;
    }
    
    .diferenciais__subtitle {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .diferenciais__info {
        gap: 1rem;
    }
    
    .info__item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .info__icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
    }
    
    .info__content h4 {
        font-size: 1.1rem;
    }
    
    .produtos__grid {
        gap: 1rem;
    }
    
    .produto__card {
        padding: 1.5rem;
    }
    
    .produto__placeholder {
        width: 80px;
        height: 80px;
    }
    
    .produto__card h3 {
        font-size: 1.1rem;
    }
    
    .produto__destaque {
        padding: 1.5rem;
    }
    
    .destaque__content h3 {
        font-size: 1.5rem;
    }
    
    .destaque__content p {
        font-size: 0.9rem;
    }
    
    .destaque__image .produto__placeholder {
        width: 120px;
        height: 120px;
    }
    
    .produto__badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        right: 15px;
    }
    
    .produto__especificacoes {
        gap: 0.3rem;
    }
    
    .espec {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    
    .beneficio__icon {
        font-size: 2rem;
    }
    
    .beneficio__item h4 {
        font-size: 1.1rem;
    }
    
    .beneficio__item p {
        font-size: 0.85rem;
    }
    
    .produtos__cta {
        padding: 1.5rem;
    }
    
    .produtos__cta h3 {
        font-size: 1.3rem;
    }
    
    .produtos__cta p {
        font-size: 1rem;
    }
    
    .revendedor__intro {
        margin-bottom: 1.5rem;
    }
    
    .revendedor__intro p {
        font-size: 1rem;
    }
    
    .revendedor__content {
        gap: 1.5rem;
    }
    
    .revendedor__info {
        gap: 1.5rem;
    }
    
    .revendedor__section h3 {
        font-size: 1.3rem;
    }
    
    .revendedor__form {
        padding: 1.5rem;
    }
    
    .revendedor__form h3 {
        font-size: 1.3rem;
    }
    
    .form__input {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer__content {
        gap: 2rem;
    }
    
    .footer__main {
        gap: 1.5rem;
    }
    
    .footer__links {
        gap: 1.5rem;
    }
    
    .footer__logo .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .footer__logo .logo-text {
        font-size: 1.5rem;
    }
    
    .cookie-content {
        padding: 1rem;
        gap: 1rem;
    }
    
    .cookie-text h4 {
        font-size: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .cookie-actions {
        gap: 0.5rem;
    }
    
    .btn--primary,
    .btn--secondary {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    /* Responsividade específica para imagens */
    .hero__placeholder {
        width: 150px;
        height: 150px;
    }
    
    .hero__placeholder svg {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 360px) {
    .hero__title {
        font-size: 1.6rem;
    }
    
    .hero__subtitle {
        font-size: 0.9rem;
    }
    
    .section__title {
        font-size: 1.6rem;
    }
    
    .section__subtitle {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .valor__card,
    .beneficio__card,
    .diferencial__card,
    .produto__card,
    .info__item {
        padding: 1rem;
    }
    
    .valor__icon,
    .beneficio__icon,
    .diferencial__icon {
        width: 50px;
        height: 50px;
    }
    
    .beneficio__icon svg {
        width: 30px;
        height: 30px;
        display: block;
        margin: 0;
        padding: 0;
        flex-shrink: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        padding: 0;
    }
    
    .info__icon {
        width: 40px;
        height: 40px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .form__input {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    /* Responsividade para imagens em telas muito pequenas */
    .hero__placeholder {
        width: 120px;
        height: 120px;
    }
    
    .hero__placeholder svg {
        width: 100px;
        height: 100px;
    }
    
    .produto__placeholder {
        width: 60px;
        height: 60px;
    }
}

/* Orientação Landscape em dispositivos móveis */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero__title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section__header {
        margin-bottom: 2rem;
    }
}

/* Dispositivos com tela de alta densidade */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .valor__icon,
    .beneficio__icon,
    .diferencial__icon,
    .info__icon {
        box-shadow: 0 2px 8px rgba(0, 82, 204, 0.3);
    }
    
    .produto__placeholder {
        background-image: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
                          linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
                          linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
                          linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
        background-size: 20px 20px;
        background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    }
}

/* Suporte para telas muito grandes */
@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }
    
    .hero__title {
        font-size: 4rem;
    }
    
    .hero__subtitle {
        font-size: 1.6rem;
    }
    
    .section__title {
        font-size: 3.5rem;
    }
    
    .section__subtitle {
        font-size: 1.5rem;
    }
    
    .valores__grid,
    .beneficios__grid,
    .diferenciais__grid,
    .produtos__grid {
        gap: 3rem;
    }
    
    .valor__card,
    .beneficio__card,
    .diferencial__card,
    .produto__card {
        padding: 3rem;
    }
    
    /* Responsividade para imagens em telas grandes */
    .hero__placeholder {
        width: 300px;
        height: 300px;
    }
    
    .hero__placeholder svg {
        width: 250px;
        height: 250px;
    }
    
    .valor__icon,
    .beneficio__icon {
        width: 100px;
        height: 100px;
    }
    
    .diferencial__icon {
        width: 120px;
        height: 120px;
    }
    
    .info__icon {
        width: 80px;
        height: 80px;
    }
    
    .produto__placeholder {
        width: 150px;
        height: 150px;
    }
}

/* Melhorias para dispositivos touch */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .nav__link:hover,
    .valor__card:hover,
    .beneficio__card:hover,
    .diferencial__card:hover,
    .produto__card:hover,
    .info__item:hover {
        transform: none;
    }
    
    .btn:active,
    .nav__link:active {
        transform: scale(0.98);
    }
    
    .valor__card:active,
    .beneficio__card:active,
    .diferencial__card:active,
    .produto__card:active,
    .info__item:active {
        transform: translateY(-2px);
    }
}

/* Prevenir scroll do body quando menu mobile estiver aberto */
body.menu-open {
    overflow: hidden;
}

/* Melhorias de responsividade para tablets */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 30px;
    }
    
    .hero__title {
        font-size: 2.8rem;
    }
    
    .hero__subtitle {
        font-size: 1.3rem;
    }
    
    .section__title {
        font-size: 2.8rem;
    }
    
    .section__subtitle {
        font-size: 1.3rem;
    }
    
    .valores__grid,
    .beneficios__grid,
    .diferenciais__grid,
    .produtos__grid {
        gap: 2.5rem;
    }
    
    .valor__card,
    .beneficio__card,
    .diferencial__card,
    .produto__card {
        padding: 2.5rem;
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer__cta-content h3 {
        font-size: 2rem;
    }
}

/* Melhorias para telas médias */
@media (min-width: 1024px) and (max-width: 1199px) {
    .container {
        max-width: 1100px;
    }
    
    .hero__title {
        font-size: 3rem;
    }
    
    .hero__subtitle {
        font-size: 1.3rem;
    }
    
    .section__title {
        font-size: 2.8rem;
    }
    
    .section__subtitle {
        font-size: 1.3rem;
    }
}

/* Melhorias para telas muito pequenas */
@media (max-width: 320px) {
    .hero__title {
        font-size: 1.4rem;
    }
    
    .hero__subtitle {
        font-size: 0.8rem;
    }
    
    .section__title {
        font-size: 1.4rem;
    }
    
    .section__subtitle {
        font-size: 0.8rem;
    }
    
    .container {
        padding: 0 8px;
    }
    
    .valor__card,
    .beneficio__card,
    .diferencial__card,
    .produto__card,
    .info__item {
        padding: 0.75rem;
    }
    
    .btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .form__input {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .hero__placeholder {
        width: 100px;
        height: 100px;
    }
    
    .hero__placeholder svg {
        width: 80px;
        height: 80px;
    }
    
    .produto__placeholder {
        width: 50px;
        height: 50px;
    }
    
    .produto__destaque {
        padding: 1rem;
    }
    
    .destaque__content h3 {
        font-size: 1.3rem;
    }
    
    .destaque__content p {
        font-size: 0.85rem;
    }
    
    .destaque__image .produto__placeholder {
        width: 100px;
        height: 100px;
    }
    
    .produto__badge {
        font-size: 0.6rem;
        padding: 0.3rem 0.6rem;
        right: 10px;
    }
    
    .espec {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
    
    
    .beneficio__icon {
        font-size: 1.8rem;
    }
    
    .beneficio__item h4 {
        font-size: 1rem;
    }
    
    .beneficio__item p {
        font-size: 0.8rem;
    }
    
    .produtos__cta {
        padding: 1rem;
    }
    
    .produtos__cta h3 {
        font-size: 1.2rem;
    }
    
    .produtos__cta p {
        font-size: 0.9rem;
    }
}



/* Melhorias para impressão */
@media print {
    .header,
    .nav__toggle,
    .cookie-banner,
    .btn {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
        background: white !important;
        color: black !important;
    }
    
    .section {
        padding: 2rem 0;
        break-inside: avoid;
    }
    
    .valor__card,
    .beneficio__card,
    .diferencial__card,
    .produto__card,
    .info__item {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
    }
}

/* Estados de foco e hover */
.nav__link:focus,
.btn:focus,
.form__input:focus,
.social__link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Estilos para elementos de formulário inválidos */
.form__input:invalid:not(:focus) {
    border-color: var(--gray);
}

.form__input:invalid:focus {
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
}

/* Loading states para botões */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn:disabled:hover {
    transform: none;
    box-shadow: var(--shadow);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    max-width: 500px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.btn--secondary {
    background: var(--gray-light);
    color: var(--text-dark);
    border: 2px solid var(--gray);
}

.btn--secondary:hover {
    background: var(--gray);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.cookie-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

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

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    /* Ajustes de grid inline */
    .produtos__grid[style*="max-width: 800px"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 0.5rem !important;
    }
    
    /* Ajustes de imagens dos displays */
    .estande__image[style*="height: 400px"] {
        height: 250px !important;
    }
    
    /* Ajustes de imagens dos produtos */
    .produto__image[style*="height: 280px"] {
        height: 200px !important;
        min-height: 200px !important;
    }
    
    /* Ajustes do rodapé centralizado */
    .footer__links[style*="justify-content: center"] {
        flex-wrap: wrap !important;
    }
    
    /* Ajustes do grid de estandes */
    .estandes__grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Ajustes dos botões do hero */
    .hero__content > div[style*="display: flex"] {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .hero__content > div[style*="display: flex"] > a {
        width: 100% !important;
        max-width: none !important;
    }
}
