* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'PT Sans', sans-serif;
    line-height: 1.6;
}
.hero-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    min-height: 68vh;
    display: flex;
    align-items: center;
    padding: 34px 0;
    position: relative;
    overflow: hidden;
}
/* Elementos decorativos de fundo */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.gradient-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(230, 46, 24, 0.1) 0%, rgba(230, 46, 24, 0.05) 100%);
    filter: blur(60px);
}
.gradient-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}
.gradient-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    background: linear-gradient(135deg, rgba(79, 79, 79, 0.1) 0%, rgba(79, 79, 79, 0.05) 100%);
}
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}
.floating-element {
    position: absolute;
    background-color: #E62E18;
    border-radius: 4px;
    opacity: 0.1;
}
.floating-element-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    right: 15%;
}
.floating-element-2 {
    width: 12px;
    height: 12px;
    top: 60%;
    right: 25%;
    border-radius: 50%;
}
.floating-element-3 {
    width: 6px;
    height: 20px;
    top: 40%;
    right: 10%;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 34px;
    width: 100%;
    position: relative;
    z-index: 2;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}
/* Coluna Esquerda */
.left-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
/* Badge Superior */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(230, 46, 24, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #27AE60;
    border-radius: 50%;
}
.badge-text {
    font-size: 14px;
    font-weight: 500;
    color: #4F4F4F;
}
.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}
.projetoum-logo {
    height: 50px;
    width: auto;
}
.herman-miller-seal {
    background-color: #E62E18;
    color: white;
    padding: 8px 12px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
}
.herman-miller-text {
    font-weight: bold;
    font-size: 12px;
    line-height: 1.2;
}
.authorized-text {
    font-size: 10px;
    line-height: 1.2;
}
.main-title {
    font-family: 'PT Sans', sans-serif;
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}
.title-gradient {
    color: #ff3a1c;
    display: block;
}
.title-location {
    color: #4F4F4F;
    display: block;
}
.description {
    font-family: 'PT Sans', sans-serif;
    font-weight: normal;
    color: #4F4F4F;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 32px;
    text-align: center;
}
.cta-button {
    background: linear-gradient(135deg, #E62E18 0%, #FF6B47 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    align-self: center;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(230, 46, 24, 0.3);
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230, 46, 24, 0.4);
}
.cta-arrow {
}
.cta-button:hover .cta-arrow {
    transform: translateX(4px);
}
/* Info Badge */
.info-badge {
    background: white;
    border: 1px solid #E0E0E0;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    text-align: center;
    margin-top: 24px;
    align-self: center;
}
/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.trust-text {
    font-size: 14px;
    color: #4F4F4F;
    margin: 0;
    text-align: center;
}
.trust-text strong {
    color: #333333;
}
/* Coluna Direita - Carrossel */
.right-column {
    width: 100%;
}
.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.carousel-track {
    display: flex;
    width: 700%;
    height: 100%;
}
.carousel-image {
    width: 14.285714%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    color: #E62E18;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(10px);
}
.carousel-btn:hover {
    background-color: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}
.prev-btn {
    left: 20px;
}
.next-btn {
    right: 20px;
}
/* Seção de Garantia */
.guarantee-section {
    background: white;
    padding: 24px 0;
    width: 100%;
    border-top: 1px solid #E9ECEF;
    border-bottom: 1px solid #E9ECEF;
}
.guarantee-container-minimal {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 0 40px;
}
.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.guarantee-icon-minimal {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E62E18;
    flex-shrink: 0;
}
.guarantee-icon-minimal svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.5;
}
.guarantee-text-minimal {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}
.guarantee-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #E62E18, transparent);
}
/* Seção de Produtos Melhorada */
.products-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    padding: 80px 40px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(230, 46, 24, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(79, 79, 79, 0.02) 0%, transparent 50%);
    pointer-events: none;
}
.products-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.products-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 46, 24, 0.1);
    border: 1px solid rgba(230, 46, 24, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #E62E18;
}
.products-badge-dot {
    width: 6px;
    height: 6px;
    background-color: #E62E18;
    border-radius: 50%;
}
.products-main-title {
    font-family: 'PT Sans', sans-serif;
    font-weight: bold;
    font-size: 42px;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.2;
}
.products-main-description {
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    color: #4F4F4F;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(230, 46, 24, 0.05);
    position: relative;
    cursor: pointer;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #E62E18 0%, #FF6B47 100%);
    transform: scaleX(0);
    transform-origin: left;
    z-index: 1;
}
.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(230, 46, 24, 0.15);
}
.product-card:hover::before {
    transform: scaleX(1);
}
.product-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
}
.product-images {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 80%; /* Proporção mais retangular para melhor visualização */
    overflow: hidden;
}
.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.05);
}
.product-image.active {
    opacity: 1;
    transform: scale(1);
}
.product-card:hover .product-image.active {
    transform: scale(1.1);
}
.product-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    color: #E62E18;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
}
.product-card:hover .product-nav {
    opacity: 1;
    visibility: visible;
}
.product-nav:hover {
    background: white;
    box-shadow: 0 8px 30px rgba(230, 46, 24, 0.3);
    transform: translateY(-50%) scale(1.1);
}
.product-nav.prev {
    left: 16px;
}
.product-nav.next {
    right: 16px;
}
.product-indicators {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.8);
}
.indicator.active {
    background-color: #E62E18;
    border-color: white;
    transform: scale(1.2);
}
.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #E62E18 0%, #FF6B47 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}
.product-info {
    padding: 24px;
    position: relative;
}
.product-title {
    font-family: 'PT Sans', sans-serif;
    font-weight: bold;
    font-size: 22px;
    color: #333333;
    margin-bottom: 8px;
    line-height: 1.3;
}
.product-card:hover .product-title {
    color: #E62E18;
}
.product-colors {
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.product-colors::before {
    content: '';
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #E62E18 0%, #FF6B47 100%);
    border-radius: 50%;
    flex-shrink: 0;
}
.product-delivery {
    font-family: 'PT Sans', sans-serif;
    font-style: italic;
    font-size: 13px;
    color: #27AE60;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.product-delivery::before {
    content: '✓';
    color: #27AE60;
    font-weight: bold;
}
.whats-button {
    width: 100%;
    background: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
    color: white;
    padding: 14px 0;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'PT Sans', sans-serif;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
}
.whats-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}
.whats-button:hover::before {
    left: 100%;
}
.whats-button:hover {
    background: linear-gradient(135deg, #229954 0%, #27AE60 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}
.product-card {
    animation-fill-mode: both;
}
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.15s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.25s; }
.product-card:nth-child(5) { animation-delay: 0.3s; }
.product-card:nth-child(6) { animation-delay: 0.35s; }
.product-card:nth-child(7) { animation-delay: 0.4s; }
.product-card:nth-child(8) { animation-delay: 0.45s; }
.product-card:nth-child(9) { animation-delay: 0.5s; }
/* Seção de Benefícios Modernizada */
.benefits-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    padding: 80px 40px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(230, 46, 24, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(79, 79, 79, 0.02) 0%, transparent 50%);
    pointer-events: none;
}
.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}
.benefits-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 46, 24, 0.1);
    border: 1px solid rgba(230, 46, 24, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #E62E18;
}
.benefits-badge-dot {
    width: 6px;
    height: 6px;
    background-color: #E62E18;
    border-radius: 50%;
}
.benefits-main-title {
    font-family: 'PT Sans', sans-serif;
    font-weight: bold;
    font-size: 42px;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.2;
}
.benefits-main-description {
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    color: #4F4F4F;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(230, 46, 24, 0.05);
    position: relative;
    text-align: center;
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #E62E18 0%, #FF6B47 100%);
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 20px 20px 0 0;
}
.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(230, 46, 24, 0.15);
}
.benefit-card:hover::before {
    transform: scaleX(1);
}
.benefit-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #E62E18;
    position: relative;
}
.benefit-icon svg {
    width: 48px;
    height: 48px;
    stroke: currentColor;
    stroke-width: 1.5;
}
.benefit-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid #E62E18;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transform: scale(0.8);
}
.benefit-card:hover .benefit-icon::after {
    opacity: 0.2;
    transform: scale(1);
}
.benefit-card:hover .benefit-icon svg {
    transform: scale(1.1);
}
.benefit-title {
    font-family: 'PT Sans', sans-serif;
    font-weight: bold;
    font-size: 22px;
    color: #333333;
    margin-bottom: 12px;
    line-height: 1.3;
}
.benefit-description {
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    color: #4F4F4F;
    line-height: 1.6;
}
/* Seção Destaque com Imagem */
.feature-highlight-section {
    background: white;
    padding: 80px 40px;
    width: 100%;
    position: relative;
}
.feature-highlight-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.feature-highlight-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.feature-highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #27AE60;
    width: fit-content;
}
.feature-highlight-badge-dot {
    width: 6px;
    height: 6px;
    background-color: #27AE60;
    border-radius: 50%;
}
.feature-highlight-title {
    font-family: 'PT Sans', sans-serif;
    font-weight: bold;
    font-size: 40px;
    color: #333333;
    line-height: 1.2;
    margin: 0;
}
.feature-highlight-subtitle {
    font-family: 'PT Sans', sans-serif;
    font-weight: 300;
    font-size: 24px;
    color: #4F4F4F;
    margin: 0;
}
.feature-highlight-description {
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    color: #4F4F4F;
    line-height: 1.6;
}
.feature-highlight-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.feature-highlight-image {
    width: 100%;
    height: auto;
    display: block;
}
.feature-highlight-image-container:hover .feature-highlight-image {
    transform: scale(1.05);
}
/* Seção CTA Principal */
.cta-section {
    background: linear-gradient(135deg, #E62E18 0%, #FF6B47 100%);
    padding: 80px 40px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.cta-content {
    color: white;
}
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    backdrop-filter: blur(10px);
}
.cta-badge-dot {
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
}
.cta-title {
    font-family: 'PT Sans', sans-serif;
    font-weight: bold;
    font-size: 42px;
    color: white;
    line-height: 1.2;
    margin-bottom: 8px;
}
.cta-subtitle {
    font-family: 'PT Sans', sans-serif;
    font-weight: 300;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}
.cta-description {
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 32px;
}
.cta-white-button {
    background: white;
    color: #E62E18;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'PT Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.cta-white-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.cta-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.cta-image {
    width: 100%;
    height: auto;
    display: block;
}
.cta-image-container:hover .cta-image {
    transform: scale(1.05);
}
/* Seção de Localização Modernizada */
.location-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    padding: 80px 40px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.location-section * {
    max-width: 100%;
    box-sizing: border-box;
}
.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(230, 46, 24, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(79, 79, 79, 0.02) 0%, transparent 50%);
    pointer-events: none;
}
.location-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}
.location-header {
    text-align: center;
    margin-bottom: 60px;
}
.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 79, 79, 0.1);
    border: 1px solid rgba(79, 79, 79, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #4F4F4F;
}
.location-badge-dot {
    width: 6px;
    height: 6px;
    background-color: #27AE60;
    border-radius: 50%;
}
.location-main-title {
    font-family: 'PT Sans', sans-serif;
    font-weight: bold;
    font-size: 42px;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.2;
}
.location-main-description {
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    color: #4F4F4F;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.location-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.location-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(230, 46, 24, 0.05);
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(230, 46, 24, 0.12);
}
.contact-card:hover .contact-icon svg {
    transform: scale(1.1);
}
.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E62E18;
    flex-shrink: 0;
}
.contact-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 1.5;
}
.contact-info {
    flex: 1;
}
.contact-label {
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #4F4F4F;
    margin-bottom: 4px;
}
.contact-value {
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.map-section {
    position: relative;
}
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}
.google-map {
    width: 100%;
    height: 100%;
    border: none;
}
.map-container:hover .google-map {
    filter: brightness(1.1);
}
.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.map-overlay-title {
    font-family: 'PT Sans', sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #333333;
    margin-bottom: 4px;
}
.map-overlay-address {
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    color: #4F4F4F;
    line-height: 1.4;
}
.company-info {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(230, 46, 24, 0.05);
    text-align: center;
    max-width: 700px;
    width: 100%;
}
.company-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    max-width: 100%;
    object-fit: contain;
}
.company-info:hover .company-logo {
    transform: scale(1.05);
}
.company-description {
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    color: #4F4F4F;
    line-height: 1.6;
    margin-bottom: 24px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.visit-button {
    background: linear-gradient(135deg, #E62E18 0%, #FF6B47 100%);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'PT Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.visit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 46, 24, 0.3);
}
/* Rodapé */
.footer {
    background-color: #333333;
    color: white;
    padding: 20px 0;
    width: 100%;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}
.footer-copyright {
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    color: #CCCCCC;
    margin: 0;
}
.footer-links {
    display: flex;
    gap: 24px;
}
.footer-link {
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    color: #CCCCCC;
    text-decoration: none;
}
.footer-link:hover {
    color: white;
}
.footer-developer {
    font-family: 'PT Sans', sans-serif;
    font-size: 12px;
    color: #999999;
    margin: 0;
}
/* Responsividade */
/* Estilos para Desktop - Seção de Garantia */
@media (min-width: 1025px) {
    .guarantee-section {
        padding: 40px 0;
    }
    .guarantee-container-minimal {
        gap: 60px;
        padding: 0 40px;
        max-width: 800px;
    }
    .guarantee-text-minimal {
        font-size: 24px;
        font-weight: 700;
        white-space: nowrap;
    }
    .guarantee-icon-minimal {
        width: 50px;
        height: 50px;
    }
    .guarantee-icon-minimal svg {
        width: 26px;
        height: 26px;
    }
    .guarantee-divider {
        height: 50px;
    }
    .info-badge {
        font-size: 20px;
    }
}
@media (max-width: 1024px) and (min-width: 769px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        padding: 28px 0;
    }
    .container {
        padding: 17px;
    }
    .product-images {
        padding-bottom: 75%; /* Proporção mais adequada para mobile */
    }
    .location-section {
        padding: 60px 15px;
    }
    .location-container {
        padding: 0 5px;
    }
    /* Remove efeitos decorativos no mobile */
    .gradient-shape,
    .floating-elements {
        display: none;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .main-title {
        font-size: 36px;
        margin-bottom: 28px;
    }
    .title-gradient {
        display: inline;
    }
    .title-location {
        display: inline;
    }
    .description {
        margin-bottom: 20px;
    }
    .info-badge {
        margin-top: 0;
        margin-bottom: 8px;
    }
    .trust-indicators {
        margin-top: 24px;
        padding: 12px 20px;
    }
    .guarantee-container-minimal {
        flex-direction: column;
        gap: 1px;
    }
    .guarantee-divider {
        display: none;
    }
    .guarantee-text-minimal.best-price {
        font-size: 24px;
        font-weight: 700;
    }
    .carousel-container {
        height: 300px;
    }
    .products-section {
        padding: 60px 20px;
    }
    .products-header {
        display: none;
    }
    .products-main-title {
        font-size: 32px;
    }
    .products-main-description {
        font-size: 16px;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .product-info {
        padding: 20px;
    }
    .product-title {
        font-size: 20px;
    }
    .benefits-section {
        display: none;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .benefit-card {
        padding: 32px 24px;
    }
    .benefits-main-title {
        font-size: 32px;
    }
    .feature-highlight-container,
    .cta-container,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .location-main-title {
        font-size: 32px;
    }
    .location-info {
        order: 2;
    }
    .map-section {
        order: 1;
    }
    .location-bottom {
        order: 3;
        margin-top: 20px;
    }
    .contact-cards {
        gap: 16px;
    }
    .contact-card {
        padding: 20px;
    }
    .map-container {
        height: 300px;
    }
    .feature-highlight-title,
    .cta-title {
        font-size: 32px;
    }
    .feature-highlight-subtitle,
    .cta-subtitle {
        font-size: 20px;
    }
    .address-title {
        font-size: 24px;
    }
}
@media (max-width: 480px) {
    .location-section {
        padding: 40px 10px;
    }
    .location-container {
        padding: 0;
    }
    .location-main-title {
        font-size: 24px;
    }
    .contact-value {
        font-size: 13px;
        word-break: break-word;
        hyphens: auto;
        line-height: 1.3;
    }
    .company-description {
        font-size: 16px;
        word-break: break-word;
        hyphens: auto;
        line-height: 1.5;
    }
    .company-info {
        padding: 24px;
        max-width: 100%;
        min-width: 280px;
    }
    .visit-button {
        padding: 12px 24px;
        font-size: 16px;
    }
    .company-logo {
        height: 45px;
        min-height: 35px;
        max-width: 200px;
    }
    .location-bottom {
        margin-top: 15px;
    }
    .contact-card {
        padding: 12px;
        gap: 12px;
    }
    .contact-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        flex-shrink: 0;
    }
    .guarantee-text-minimal.best-price {
        font-size: 22px;
        font-weight: 700;
    }
    .main-title {
        font-size: 28px;
        margin-bottom: 28px;
    }
    .description {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 20px;
    }
    .carousel-container {
        height: 250px;
    }
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .product-title {
        font-size: 20px;
    }
    .benefits-main-title {
        font-size: 28px;
    }
    .benefit-card {
        padding: 24px 20px;
    }
    .benefit-title {
        font-size: 18px;
    }
    .feature-highlight-title,
    .cta-title {
        font-size: 28px;
    }
    .feature-highlight-subtitle,
    .cta-subtitle {
        font-size: 18px;
    }
    .location-main-title {
        font-size: 28px;
    }
    .contact-card {
        padding: 16px;
        gap: 12px;
    }
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .company-info {
        padding: 28px;
        max-width: 500px;
    }
    .map-container {
        height: 250px;
    }
    .footer-content {
        padding: 0 20px;
    }
    .footer-links {
        gap: 16px;
    }
} 