/*
Theme Name: Merice v5.0
Description: Tema responsivo para Merice Comércio de Peças em Alumínio - Versão com gestão completa via Personalizador
Version: 5.0
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 0.2rem;
}

.logo h1 a {
    text-decoration: none;
    color: inherit;
}

.logo span {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6b35;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background: #f8f9fa;
    color: #ff6b35;
    padding-left: 2rem;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Opacidade alterada para um efeito mais suave */
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.7) 0%, rgba(247, 147, 30, 0.6) 100%);
    z-index: -1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Imagem de fundo padrão para o SVG */
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') center/cover;
    z-index: -3;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge .custom-icon {
    width: 20px;
    height: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: #fff200;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff200;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn .custom-icon {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: #fff;
    color: #ff6b35;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-download {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
    animation: pulse 2s infinite;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
    }
    50% { box-shadow: 0 4px 25px rgba(40, 167, 69, 0.5);
    }
    100% { box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0);
    }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px);
    }
}

/* Sections */
section {
    padding: 5rem 0;
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Sobre Section */
.sobre {
    background: #f8f9fa;
}

.sobre-content {
    max-width: 1000px;
    margin: 0 auto;
}

.sobre-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.sobre-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.sobre-media {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sobre-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px;
    gap: 1rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item:nth-child(3) {
    grid-column: 1 / -1;
    height: 150px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 1rem;
}

.image-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.image-placeholder span {
    font-size: 0.8rem;
    font-weight: 600;
}

.video-container {
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.video-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.video-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-placeholder p {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.valor-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-5px);
}

.valor-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.valor-icon .custom-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.valor-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.valor-card p {
    color: #666;
    line-height: 1.6;
}

/* Produtos Section */
.produtos {
    background: white;
}

.produtos-container {
    max-width: 1200px;
    margin: 0 auto;
}

.produto-categoria {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.categoria-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #ff6b35;
}

.categoria-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.categoria-count {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.produto-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.produto-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.produto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.produto-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.produto-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.produto-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    flex-grow: 1;
}

.produto-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.produto-codigo {
    display: inline-block;
    background: #f8f9fa;
    color: #ff6b35;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: auto;
    align-self: flex-start;
}

/* Contato Section */
.contato {
    background: #f8f9fa;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contato-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contato-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contato-icon.whatsapp-icon {
    background: #25D366;
}

.contato-icon.clock-icon {
    background: #007bff;
}

.contato-icon.star-icon {
    background: #ffc107;
    color: #333;
}

.contato-icon .custom-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.contato-icon.star-icon .custom-icon {
    filter: brightness(0);
}

.contato-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contato-details p {
    color: #666;
    margin-bottom: 0.25rem;
}

.contato-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contato-link:hover {
    color: #f7931e;
}

.contato-form-container {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

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

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-social {
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background: #f7931e;
}

.social-link .custom-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-contact-item .custom-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.footer-security {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}

.security-badge {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    opacity: 0.7;
}

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

/* Botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float .custom-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.whatsapp-float i {
    font-size: 1.8rem;
}

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

/* Ícones personalizados */
.custom-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 0.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .sobre-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sobre-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: 150px 150px 150px;
    }
    
    .gallery-item:nth-child(3) {
        grid-column: 1;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
    }
    
    .categoria-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float .custom-icon {
        width: 25px;
        height: 25px;
    }
    
    .whatsapp-float i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .sobre-gallery {
        grid-template-columns: 1fr;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
    }
}

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

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling para navegação */
html {
    scroll-padding-top: 100px;
}

/* 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;
    }
    
    .whatsapp-float a {
        animation: none !important;
    }
}

/* =============================================
   LANDING PAGES - Serralheria e Pedaleiras
   Formato "limpo" high-converting
   ============================================= */

/* Reset para Landing Pages */
.lp-serralheria,
.lp-pedaleiras {
    background: #fff;
}

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

/* =============================================
   HERO SECTION - Landing Pages
   ============================================= */

.lp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
}

.lp-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.lp-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.lp-hero-placeholder i {
    font-size: 8rem;
    opacity: 0.3;
}

.lp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(51, 51, 51, 0.85) 100%);
    z-index: 1;
}

.lp-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.lp-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.lp-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.lp-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.lp-benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.lp-benefit-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(10px);
}

.lp-benefit-item i {
    font-size: 2rem;
    min-width: 40px;
}

.lp-benefit-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* =============================================
   CTA BUTTONS - Landing Pages
   ============================================= */

.lp-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.lp-cta-primary {
    background: #25D366;
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.lp-cta-primary:hover {
    background: #1ebd59;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.lp-cta-primary i {
    font-size: 1.5rem;
}

.lp-cta-large {
    padding: 2rem 4rem;
    font-size: 1.3rem;
}

/* =============================================
   TRUST SECTION - Prova de Confiança
   ============================================= */

.lp-trust {
    padding: 4rem 0;
    background: #f8f9fa;
}

.lp-trust-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.lp-trust-icon {
    width: 100px;
    height: 100px;
    min-width: 100px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.lp-trust-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.lp-trust-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* =============================================
   CATALOG SECTION - Catálogo Visual
   ============================================= */

.lp-catalog {
    padding: 5rem 0;
    background: white;
}

.lp-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
}

.lp-section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.lp-catalog-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.lp-catalog-category {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
}

.lp-category-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 2rem;
    text-align: center;
}

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

.lp-products-featured {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.lp-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.lp-product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.lp-product-featured img {
    height: 300px;
}

.lp-product-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 1rem;
}

.lp-product-featured .lp-product-placeholder {
    height: 300px;
}

.lp-product-placeholder i {
    font-size: 3rem;
    opacity: 0.7;
}

.lp-product-placeholder span {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    padding: 0 1rem;
    text-align: center;
}

.lp-product-info {
    padding: 1.5rem;
}

.lp-product-info h3,
.lp-product-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.lp-product-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* =============================================
   CTA FINAL SECTION
   ============================================= */

.lp-cta-final {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

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

.lp-cta-final-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.lp-cta-final-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

/* =============================================
   FOOTER MINIMALISTA - Landing Pages
   ============================================= */

.lp-footer {
    background: #222;
    color: white;
    padding: 3rem 0 1.5rem;
}

.lp-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-footer-brand h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.lp-footer-brand p {
    font-size: 0.9rem;
    color: #999;
}

.lp-footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-footer-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.lp-footer-info i {
    color: #ff6b35;
    font-size: 1.2rem;
}

.lp-footer-bottom {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* =============================================
   WHATSAPP FLOAT BUTTON - Landing Pages
   ============================================= */

.lp-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.lp-whatsapp-float a {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

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

/* =============================================
   RESPONSIVE - Landing Pages
   ============================================= */

@media (max-width: 768px) {
    .lp-title {
        font-size: 2rem;
    }
    
    .lp-subtitle {
        font-size: 1.1rem;
    }
    
    .lp-benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .lp-benefit-item span {
        font-size: 1rem;
    }
    
    .lp-cta-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .lp-cta-large {
        padding: 1.5rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .lp-trust-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .lp-trust-text h3 {
        font-size: 1.4rem;
    }
    
    .lp-trust-text p {
        font-size: 1rem;
    }
    
    .lp-catalog-category {
        padding: 2rem 1rem;
    }
    
    .lp-products-grid {
        grid-template-columns: 1fr;
    }
    
    .lp-products-featured {
        grid-template-columns: 1fr;
    }
    
    .lp-section-title {
        font-size: 1.8rem;
    }
    
    .lp-cta-final-title {
        font-size: 1.8rem;
    }
    
    .lp-cta-final-subtitle {
        font-size: 1.1rem;
    }
    
    .lp-footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .lp-footer-info {
        align-items: center;
    }
    
    .lp-whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .lp-whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .lp-hero {
        min-height: auto;
        padding: 4rem 0 3rem;
    }
    
    .lp-title {
        font-size: 1.6rem;
    }
    
    .lp-subtitle {
        font-size: 1rem;
    }
    
    .lp-badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .lp-benefit-item {
        padding: 1rem;
    }
    
    .lp-benefit-item i {
        font-size: 1.5rem;
    }
    
    .lp-benefit-item span {
        font-size: 0.9rem;
    }
}

