/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    cursor: default !important;
}

:root {
    --color-black: #000000;
    --color-dark-gray: #0a0a0a;
    --color-gray: #1a1a1a;
    --color-light-gray: #2d2d2d;
    --color-silver: #c0c0c0;
    --color-light-silver: #e8e8e8;
    --color-white: #ffffff;
    
    /* Gradientes aprimorados */
    --gradient-dark: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #1a1a1a 50%, #0a0a0a 75%, #000000 100%);
    --gradient-silver: linear-gradient(135deg, #a0a0a0 0%, #c0c0c0 25%, #e8e8e8 50%, #ffffff 75%, #e8e8e8 100%);
    --gradient-dark-silver: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #2d2d2d 50%, #3a3a3a 75%, #2d2d2d 100%);
    --gradient-radial: radial-gradient(circle at center, rgba(192, 192, 192, 0.15) 0%, rgba(192, 192, 192, 0.05) 50%, transparent 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(26, 26, 26, 0.4);
    --glass-border: rgba(192, 192, 192, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Sombras */
    --shadow-glow: 0 0 30px rgba(192, 192, 192, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.6);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--color-black);
    color: var(--color-light-silver);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

/* Desabilitar cursor de texto e seleção em todos os elementos por padrão */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Permitir seleção de texto apenas em elementos específicos */
input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: text;
}


/* Desabilitar cursor de texto em TODOS os outros elementos */
h1, h2, h3, h4, h5, h6,
.section-title, .section-subtitle,
.diferencial-title, .produto-title, .destaque-title,
p:not(.diferencial-text):not(.sobre-description):not(.destaque-description):not(.produto-description),
span:not(.diferencial-text):not(.sobre-description):not(.destaque-description):not(.produto-description),
li, 
blockquote:not(.depoimento-card blockquote),
cite:not(.depoimento-card cite),
.nav-link, a, button, .btn,
.diferencial-card, .produto-card, .destaque-content,
.hero-title, .hero-subtitle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    cursor: default;
}

/* Links e botões devem ter cursor pointer */
a, button, .btn, .nav-link {
    cursor: pointer !important;
}

/* Cards não devem mostrar cursor de texto */
.diferencial-card, .produto-card, .destaque-content {
    cursor: default !important;
}

/* Textura de fundo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(192, 192, 192, 0.03) 2px, rgba(192, 192, 192, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(192, 192, 192, 0.03) 2px, rgba(192, 192, 192, 0.03) 4px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(192, 192, 192, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(192, 192, 192, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(192, 192, 192, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header com Glassmorphism */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 1000;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(192, 192, 192, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--color-light-silver);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-silver);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-light-silver);
    transition: all 0.3s ease;
}

/* Hero Section com layout 2 colunas */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    background-image: 
        var(--gradient-radial),
        var(--gradient-overlay),
        linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #1a1a1a 50%, #0a0a0a 75%, #000000 100%);
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(192, 192, 192, 0.02) 100px, rgba(192, 192, 192, 0.02) 102px);
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top, rgba(192, 192, 192, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(192, 192, 192, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.25;
    letter-spacing: -0.3px;
    color: var(--color-white);
    max-width: 90%;
}

.gradient-text {
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    color: var(--color-silver);
    margin-bottom: 1.25rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.6;
    max-width: 85%;
}

.hero-subtitle br {
    display: none;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    border-radius: 20px;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--gradient-dark);
    cursor: grab;
    user-select: none;
}

.hero-carousel:active {
    cursor: grabbing;
}

.hero-carousel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

.hero-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    max-height: 550px;
}

.hero-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 450px;
    max-height: 550px;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
    touch-action: pan-y;
}

.hero-carousel-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.hero-carousel.dragging .hero-carousel-slide {
    transition: none;
}

.hero-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(192, 192, 192, 0.1);
    display: block;
}

.hero-carousel-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 15;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.hero-dot.active {
    background: rgba(255, 255, 255, 0.9);
    width: 30px;
    border-radius: 5px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    line-height: 1;
}

.btn-primary {
    background: var(--gradient-silver);
    color: var(--color-black);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #d4d4d4 0%, #c0c0c0 100%);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-light-silver);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(192, 192, 192, 0.15);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: translateY(-3px);
}


/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contato.section {
    padding: 0;
}

/* Texturas e Padrões Decorativos */
.texture-pattern {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
}

/* Padrões do Hero */
.texture-pattern-hero-1 {
    top: 15%;
    left: 8%;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(192, 192, 192, 0.3) 2px, transparent 2px);
    background-size: 18px 18px;
    animation: float 6s ease-in-out infinite;
}

.texture-pattern-hero-2 {
    bottom: 20%;
    right: 10%;
    width: 130px;
    height: 130px;
    background-image: 
        linear-gradient(rgba(192, 192, 192, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192, 192, 192, 0.2) 1px, transparent 1px);
    background-size: 12px 12px;
    transform: rotate(45deg);
    animation: float 8s ease-in-out infinite reverse;
}

/* Polka Dot Pattern 1 - Canto superior esquerdo */
.texture-pattern-1 {
    top: 80px;
    left: 4%;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(192, 192, 192, 0.35) 2px, transparent 2px);
    background-size: 20px 20px;
    background-position: 0 0;
    animation: float 6s ease-in-out infinite;
}


/* Grid Pattern 3 - Meio esquerdo */
.texture-pattern-3 {
    top: 30%;
    left: 3%;
    width: 100px;
    height: 100px;
    background-image: 
        linear-gradient(rgba(192, 192, 192, 0.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192, 192, 192, 0.25) 1px, transparent 1px);
    background-size: 10px 10px;
    transform: rotate(45deg);
    animation: float 7s ease-in-out infinite;
}

/* Polka Dot Pattern 4 - Meio direito */
.texture-pattern-4 {
    top: 60%;
    right: 5%;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(circle, rgba(192, 192, 192, 0.25) 2px, transparent 2px);
    background-size: 25px 25px;
    background-position: 0 0;
    animation: float 9s ease-in-out infinite;
}

/* Dots Pattern 5 - Superior direito */
.texture-pattern-5 {
    top: 100px;
    right: 10%;
    width: 80px;
    height: 80px;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(192, 192, 192, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 25% 25%, rgba(192, 192, 192, 0.2) 1px, transparent 1px);
    background-size: 12px 12px, 8px 8px;
    animation: float 5s ease-in-out infinite reverse;
}

/* Grid Pattern 6 - Inferior esquerdo */
.texture-pattern-6 {
    bottom: 120px;
    left: 7%;
    width: 130px;
    height: 130px;
    background-image: 
        linear-gradient(rgba(192, 192, 192, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192, 192, 192, 0.15) 1px, transparent 1px);
    background-size: 12px 12px;
    transform: rotate(-45deg);
    animation: float 10s ease-in-out infinite;
}

/* Polka Dot Pattern 7 - Meio esquerdo */
.texture-pattern-7 {
    top: 40%;
    left: 4%;
    width: 140px;
    height: 140px;
    background-image: radial-gradient(circle, rgba(192, 192, 192, 0.2) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    background-position: 0 0;
    animation: float 8s ease-in-out infinite reverse;
}

/* Dots Pattern 8 - Inferior direito */
.texture-pattern-8 {
    bottom: 60px;
    right: 6%;
    width: 110px;
    height: 110px;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(192, 192, 192, 0.25) 1px, transparent 1px),
        radial-gradient(circle at 70% 70%, rgba(192, 192, 192, 0.25) 1px, transparent 1px);
    background-size: 14px 14px;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-20px) translateX(10px);
    }
    66% {
        transform: translateY(10px) translateX(-15px);
    }
}

/* Adicionar mais texturas nas seções específicas */

.produtos::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 2%;
    width: 180px;
    height: 180px;
    background-image: 
        radial-gradient(circle, rgba(192, 192, 192, 0.15) 1px, transparent 1px);
    background-size: 16px 16px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
    animation: float 12s ease-in-out infinite;
}

.diferenciais::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 1%;
    width: 160px;
    height: 160px;
    background-image: 
        linear-gradient(rgba(192, 192, 192, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192, 192, 192, 0.1) 1px, transparent 1px);
    background-size: 14px 14px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
    transform: rotate(45deg);
}

.contato::after {
    content: '';
    position: absolute;
    top: 25%;
    right: 3%;
    width: 220px;
    height: 220px;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(192, 192, 192, 0.2) 1.5px, transparent 1.5px),
        radial-gradient(circle at 80% 80%, rgba(192, 192, 192, 0.2) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
    animation: float 9s ease-in-out infinite reverse;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.contato .section-header {
    margin-bottom: 30px;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 1rem;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-silver);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
}

/* Sobre Section - Design Clean e Refinado */
.sobre {
    background: var(--color-dark-gray);
    position: relative;
    overflow: hidden;
}

.sobre-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-image: url('assets/sobre-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.1;
}

.sobre-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-dark-gray) 0%, transparent 70%);
    z-index: 1;
}

.sobre-overlay {
    display: none;
}

.sobre-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.sobre-text-wrapper {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    max-width: 100%;
    margin: 0 auto;
}

.sobre-text {
    position: relative;
    z-index: 1;
}

.sobre-description {
    font-size: 1rem;
    color: var(--color-light-silver);
    margin-bottom: 1.75rem;
    line-height: 1.75;
    font-weight: 400;
}

.sobre-description strong {
    color: var(--color-white);
    font-weight: 500;
}

.sobre-image-side {
    display: none;
}

.sobre-highlights {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(192, 192, 192, 0.12);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-light-silver);
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    color: var(--color-white);
}

.highlight-item i,
.highlight-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-silver);
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    min-width: 24px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.highlight-item:hover i,
.highlight-item:hover svg {
    color: var(--color-white);
    stroke-width: 2;
    transform: scale(1.1);
}

@media (max-width: 968px) {
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sobre-background {
        width: 100%;
        opacity: 0.08;
    }
}

/* Produtos Section */
.produtos {
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
    position: relative;
}

.produtos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(192, 192, 192, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(192, 192, 192, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.produto-destaque {
    position: relative;
    margin-bottom: 100px;
    margin-top: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    overflow: visible;
    box-shadow: var(--shadow-glass);
    border: 1px solid var(--glass-border);
}

.produto-destaque::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.destaque-image {
    position: relative;
}

.destaque-badge {
    position: absolute;
    top: -18px;
    left: 25%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
    color: var(--color-white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    z-index: 10;
    animation: pulse 2s infinite;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    white-space: nowrap;
}

@keyframes pulse {
    0%, 100% { 
        transform: translateX(-50%) scale(1); 
        box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4); 
    }
    50% { 
        transform: translateX(-50%) scale(1.05); 
        box-shadow: 0 6px 20px rgba(34, 197, 94, 0.6); 
    }
}

.destaque-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    min-height: 500px;
}

.destaque-button-inline {
    margin-top: auto;
    padding-top: 1.5rem;
}

.btn-destaque {
    font-size: 0.95rem;
    padding: 1rem 2.5rem;
    width: 100%;
    max-width: 100%;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.destaque-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.destaque-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.destaque-image:hover .destaque-img {
    transform: scale(1.05);
}

.destaque-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destaque-image:hover .destaque-img {
    transform: scale(1.05);
}

.destaque-text {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.destaque-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.25rem;
    color: var(--color-white);
    letter-spacing: -0.3px;
    line-height: 1.25;
}

.destaque-description,
.produto-description,
.depoimento-card blockquote,
.depoimento-card cite {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: text;
}

.destaque-description {
    font-size: 1rem;
    color: var(--color-light-silver);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
}

.destaque-beneficios {
    list-style: none;
    margin-bottom: 2.5rem;
    padding: 0;
}

.destaque-beneficios li {
    padding: 0.6rem 0;
    color: var(--color-light-silver);
    position: relative;
    padding-left: 2rem;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.6;
}

.destaque-beneficios li i {
    position: absolute;
    left: 0;
    color: #22c55e;
    font-size: 0.85rem;
    top: 0.75rem;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.produto-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(192, 192, 192, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    height: 100%;
    align-items: stretch;
}

.produto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border-color: rgba(192, 192, 192, 0.4);
}

.produto-image {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-dark);
    flex-shrink: 0;
}

.produto-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.produto-card:hover .produto-img {
    transform: scale(1.05);
}

.produto-content {
    padding: 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0;
    gap: 0.75rem;
    justify-content: space-between;
}

.produto-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: -0.2px;
    line-height: 1.3;
    display: flex;
    align-items: flex-start;
    margin: 0;
    flex-shrink: 0;
}

.produto-description {
    color: var(--color-light-silver);
    line-height: 1.5;
    font-weight: 400;
    font-size: 0.8rem;
    display: block;
    margin: 0;
    flex-shrink: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.produto-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    min-height: 0;
}

/* Cards sem lista - descrição expande para ocupar espaço da lista */
.produto-card:not(:has(.produto-lista)) .produto-description {
    flex: 1;
    min-height: 0;
}

.produto-lista li {
    color: var(--color-light-silver);
    padding: 0.3rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.produto-lista li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-silver);
    font-size: 1rem;
}

/* Garantir que cards sem lista tenham o mesmo alinhamento */
.produto-card:not(:has(.produto-lista)) .produto-description {
    margin-bottom: 0;
}

/* Botão dos produtos */
.produto-button-wrapper {
    margin-top: auto;
    padding-top: 1rem;
    flex-shrink: 0;
}

.btn-produto {
    background: var(--gradient-silver);
    color: var(--color-black);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    font-weight: 500;
    letter-spacing: 0.3px;
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
}

.btn-produto:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #d4d4d4 0%, #c0c0c0 100%);
}

/* Depoimentos Section */
.depoimentos-section {
    background-image: url('assets/depimg.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
    background-color: #0a0a0a;
}

.depoimentos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}


.depoimentos-slider-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 80px 0;
}

.depoimentos-slider {
    display: flex;
    gap: 30px;
    padding: 0 50px;
    width: fit-content;
}

.depoimentos-slider-wrapper {
    overflow: hidden;
}

/* Pause on hover apenas no desktop */
@media (min-width: 969px) {
    .depoimentos-slider-wrapper:hover .depoimentos-slider {
        animation-play-state: paused;
    }
}

/* Animação suave e leve - loop infinito */
@keyframes scrollDepoimentos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

.depoimentos-slider {
    animation: scrollDepoimentos 80s linear infinite;
}

.depoimento-card {
    flex-shrink: 0;
    width: 450px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 20px;
    padding: 30px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    max-height: 400px;
    overflow: hidden;
}

.depoimento-card blockquote {
    flex-grow: 1;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--color-light-silver);
}

.depoimento-card cite {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    color: var(--color-silver);
    font-style: normal;
    margin-top: auto;
}

.depoimento-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
    color: #ffd700;
    font-size: 1.2rem;
}

/* Diferenciais Section */
.diferenciais {
    background: var(--gradient-dark);
    position: relative;
}

.diferenciais::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-radial);
    opacity: 0.3;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.diferencial-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem 1.75rem;
    border-radius: 12px;
    border: 1px solid rgba(192, 192, 192, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.diferencial-card[data-color="blue"]::before {
    color: #60a5fa;
}

.diferencial-card[data-color="purple"]::before {
    color: #a78bfa;
}

.diferencial-card[data-color="gold"]::before {
    color: #fbbf24;
}

.diferencial-card[data-color="green"]::before {
    color: #34d399;
}

.diferencial-card:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(192, 192, 192, 0.2);
}

.diferencial-card:hover::before {
    opacity: 1;
}

.diferencial-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.diferencial-icon i,
.diferencial-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
    transition: all 0.3s ease;
    fill: none;
}

.diferencial-icon svg {
    display: block;
}

.diferencial-card[data-color="blue"] .diferencial-icon i,
.diferencial-card[data-color="blue"] .diferencial-icon svg {
    color: #60a5fa;
    stroke: #60a5fa;
}

.diferencial-card[data-color="purple"] .diferencial-icon i,
.diferencial-card[data-color="purple"] .diferencial-icon svg {
    color: #a78bfa;
    stroke: #a78bfa;
}

.diferencial-card[data-color="gold"] .diferencial-icon i,
.diferencial-card[data-color="gold"] .diferencial-icon svg {
    color: #fbbf24;
    stroke: #fbbf24;
}

.diferencial-card[data-color="green"] .diferencial-icon i,
.diferencial-card[data-color="green"] .diferencial-icon svg {
    color: #34d399;
    stroke: #34d399;
}

.diferencial-card:hover .diferencial-icon i,
.diferencial-card:hover .diferencial-icon svg {
    transform: scale(1.1);
}

.diferencial-title {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--color-white);
    letter-spacing: -0.1px;
    line-height: 1.3;
    height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.diferencial-text {
    color: var(--color-light-silver);
    line-height: 1.6;
    font-weight: 400;
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
    text-align: center;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: text;
}

/* Contato Section */
.contato {
    background: var(--gradient-dark);
    position: relative;
    padding: 0;
}


.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: stretch;
    position: relative;
}

.contato-details-wrapper {
    background-color: var(--gradient-dark);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.92)),
        url('assets/contato-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 35px 40px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    position: relative;
}

.contato-details-wrapper h3 {
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
    letter-spacing: -0.2px;
}

.contato-details-wrapper p {
    color: rgba(192, 192, 192, 0.8);
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.contato-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    flex: 1;
}

.contato-details-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.875rem;
    color: var(--color-light-silver);
    position: relative;
}

.contato-details-list li i {
    color: var(--color-silver);
    font-size: 1.1rem;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    pointer-events: none;
}

.contato-details-list li a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 10;
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
    cursor: pointer;
    pointer-events: auto;
    flex-shrink: 0;
    max-width: fit-content;
}

.contato-details-list li span {
    pointer-events: none;
    display: inline-block;
}

.contato-details-list li a:hover {
    color: var(--color-white);
}

.contato-details-list li a:hover i {
    color: var(--color-white);
}

/* WhatsApp Icon */
.contato-details-list .fa-whatsapp {
    color: #25D366;
}

.contato-details-list li:hover .fa-whatsapp {
    color: #25D366;
}

/* Instagram Icon */
.contato-details-list .fa-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Facebook Icon */
.contato-details-list .fa-facebook {
    color: #1877F2;
}

.contato-details-list li:hover .fa-facebook {
    color: #1877F2;
}

/* Email Icon */
.contato-details-list .fa-envelope {
    color: var(--color-silver);
}

.contato-details-list li:hover .fa-envelope {
    color: var(--color-white);
}

/* Location Icon */
.contato-details-list .fa-map-marker-alt {
    color: var(--color-silver);
}

.contato-details-list li:hover .fa-map-marker-alt {
    color: var(--color-white);
}

.contato-map-wrapper {
    background-color: rgba(253, 250, 246, 0.05);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.contato-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 0;
    overflow: hidden;
    border: none;
    background: rgba(0, 0, 0, 0.3);
    flex: 1;
}

.contato-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contato-form-wrapper h3 {
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    color: var(--color-white);
    letter-spacing: -0.2px;
}

.contato-form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-group {
    margin-bottom: 0.875rem;
}

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 0.875rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 6px;
    color: var(--color-white);
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 400;
    box-sizing: border-box;
    line-height: 1.4;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: text;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(192, 192, 192, 0.5);
    font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-silver);
    box-shadow: 0 0 0 2px rgba(192, 192, 192, 0.1);
    background: rgba(0, 0, 0, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 70px;
}

.btn-full {
    width: 100%;
    margin-top: 0.75rem;
    align-self: stretch;
    justify-content: center;
    text-align: center;
    padding: 0.875rem 2rem;
}

/* Centralizar botão no mobile */
@media (max-width: 968px) {
    .btn-full {
        display: flex;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-top: 1px solid rgba(192, 192, 192, 0.08);
    padding: 2rem 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(192, 192, 192, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(192, 192, 192, 0.02) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(192, 192, 192, 0.01) 2px, rgba(192, 192, 192, 0.01) 4px);
    opacity: 0.5;
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.1), transparent);
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    opacity: 0.85;
    filter: drop-shadow(0 0 8px rgba(192, 192, 192, 0.15));
}

.footer-text {
    color: rgba(192, 192, 192, 0.6);
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.6;
}

.footer-text p {
    margin-bottom: 0.4rem;
}

.footer-text p:last-child {
    margin-bottom: 0;
}

/* Otimizações de imagem para mobile */
@media (max-width: 968px) {
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .hero-img,
    .produto-img,
    .destaque-img {
        will-change: transform;
        transform: translateZ(0);
        backface-visibility: hidden;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .destaque-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .destaque-image {
        min-height: 200px;
        height: 200px;
    }
    
    .produto-destaque {
        margin-bottom: 50px;
        margin-top: 20px;
        border-radius: 12px;
    }
    
    .destaque-text {
        padding: 1.5rem;
    }
    
    .destaque-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .destaque-description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .destaque-beneficios {
        margin-bottom: 1rem;
    }
    
    .destaque-beneficios li {
        font-size: 0.8rem;
        padding: 0.4rem 0;
        padding-left: 1.5rem;
    }
    
    .destaque-button-inline {
        padding-top: 0.75rem;
    }
    
    .btn-destaque {
        font-size: 0.85rem;
        padding: 0.75rem 1.5rem;
    }
    
    .destaque-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.25rem;
        top: -12px;
    }
    
    .produto-button-wrapper {
        padding-top: 0.875rem;
    }
    
    .btn-produto {
        font-size: 0.8rem;
        padding: 0.7rem 1.25rem;
    }
    
    .produto-content {
        padding: 1.25rem 1.25rem;
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }
    
    .contato-details-wrapper {
        padding: 30px 30px;
    }
    
    .contato-map-wrapper {
        padding: 0;
    }
    
    .contato-map {
        min-height: 350px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        justify-items: center;
    }
    
    .hero-text {
        text-align: center;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-subtitle {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 1200px) {
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .diferencial-card {
        padding: 1.75rem 1.5rem;
    }
    
    .diferencial-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }
    
    .diferencial-icon i,
    .diferencial-icon svg {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .sobre-features {
        grid-template-columns: 1fr;
    }

    .produtos-grid {
        grid-template-columns: 1fr;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .diferencial-card {
        padding: 1.5rem 1.25rem;
    }
    
    .diferencial-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
    
    .diferencial-icon i,
    .diferencial-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .diferencial-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .diferencial-text {
        font-size: 0.875rem;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
    }
    
    .contato-details-wrapper {
        padding: 25px 20px;
    }
    
    .depoimentos-section {
        min-height: 50vh;
        background-attachment: scroll;
    }
    
    .depoimentos-slider-wrapper {
        padding: 60px 0;
    }
    
    .depoimentos-slider {
        padding: 0 20px;
        gap: 20px;
    }
    
    .depoimento-card {
        width: 320px;
        padding: 30px;
    }
    
    .depoimento-card blockquote {
        font-size: 1rem;
    }
    
    .depoimento-card cite {
        font-size: 0.75rem;
    }
    
    .contato-map-wrapper {
        padding: 0;
    }
    
    .contato-map {
        min-height: 300px;
    }
    
    .contato-details-wrapper h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .contato-details-wrapper p {
        margin-bottom: 1rem;
        font-size: 0.8rem;
    }
    
    .contato-details-list li {
        margin-bottom: 0.75rem;
    }
    
    .contato-map {
        min-height: 250px;
    }
    
    .form-group textarea {
        min-height: 60px;
    }

    /* Reduzir tamanho e opacidade dos padrões em mobile */
    .texture-pattern {
        opacity: 0.1;
        width: 60px !important;
        height: 60px !important;
    }

    .texture-pattern-1,
    .texture-pattern-2,
    .texture-pattern-3,
    .texture-pattern-4,
    .texture-pattern-5,
    .texture-pattern-6,
    .texture-pattern-7,
    .texture-pattern-8 {
        width: 60px !important;
        height: 60px !important;
    }

    .sobre::after,
    .produtos::after,
    .diferenciais::after,
    .contato::after {
        width: 80px !important;
        height: 80px !important;
        opacity: 0.15 !important;
    }
}

@media (max-width: 600px) {
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .produto-destaque {
        margin-bottom: 30px;
        margin-top: 15px;
        border-radius: 10px;
    }
    
    .destaque-content {
        min-height: auto;
    }
    
    .destaque-image {
        min-height: 180px;
        height: 180px;
    }
    
    .destaque-text {
        padding: 1.25rem;
    }
    
    .destaque-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .destaque-description {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }
    
    .destaque-beneficios {
        margin-bottom: 0.75rem;
    }
    
    .destaque-beneficios li {
        font-size: 0.75rem;
        padding: 0.3rem 0;
        padding-left: 1.25rem;
        line-height: 1.4;
    }
    
    .destaque-button-inline {
        padding-top: 0.5rem;
    }
    
    .btn-destaque {
        font-size: 0.8rem;
        padding: 0.65rem 1.25rem;
    }
    
    .destaque-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
        top: -10px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .produto-button-wrapper {
        padding-top: 0.75rem;
    }
    
    .btn-produto {
        font-size: 0.75rem;
        padding: 0.65rem 1rem;
    }
    
    .btn-produto i {
        font-size: 0.9rem;
    }
    
    .produto-content {
        padding: 1rem 1rem;
    }
}
