/*
Theme Name: Dermix
Description: Tema para loja de sneakers premium importados
Version: 1.0
Author: Dermix
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    z-index: 50;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
    text-decoration: none;
}

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

.nav a {
    text-decoration: none;
    color: #6b7280;
    transition: color 0.3s;
}

.nav a:hover {
    color: black;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    background: white;
    color: #374151;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.3s;
    font-size: 0.875rem;
}

.btn:hover {
    background: #f9fafb;
}

.btn-primary {
    background: black;
    color: white;
    border-color: black;
}

.btn-primary:hover {
    background: #374151;
}

/* Hero Section */
.hero {
    padding-top: 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f9fafb 0%, white 50%, #f3f4f6 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: #e5e7eb;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(3rem);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 5rem;
    right: 2.5rem;
    width: 10rem;
    height: 10rem;
    background: #d1d5db;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(2rem);
}

.hero-content {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto;
    padding: 5rem 0;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: black;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: bold;
    color: black;
    margin-bottom: 2rem;
    line-height: 0.9;
    letter-spacing: -0.025em;
}

.hero .subtitle {
    font-size: clamp(2rem, 4vw, 6rem);
    font-weight: 300;
    color: #6b7280;
    margin-top: 0.5rem;
}

.hero p {
    font-size: clamp(1.25rem, 2vw, 2rem);
    color: #4b5563;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
}

.hero .highlight {
    color: #111827;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 9999px;
    transition: all 0.3s;
}

.btn-hero:hover {
    transform: scale(1.05);
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #10b981;
    border-radius: 50%;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: white;
}

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

.section-title h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: bold;
    margin-bottom: 1rem;
    color: black;
}

.section-title p {
    color: #6b7280;
    max-width: 32rem;
    margin: 0 auto;
}

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

.product-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: black;
    margin-bottom: 0.5rem;
}

.product-content p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: black;
    margin-bottom: 1rem;
}

.product-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: white;
    border-top: 1px solid #e5e7eb;
}

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

.footer-section h3,
.footer-section h4 {
    font-weight: 600;
    color: black;
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-size: 1.25rem;
}

.footer-section p,
.footer-section li {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: black;
}

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

.footer-bottom p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Mobile */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-content {
        padding: 3rem 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* WordPress specific styles */
.wp-block-group {
    margin: 2rem 0;
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 1rem;
}

.alignright {
    float: right;
    margin-left: 1rem;
}