/*
Theme Name: Sapatos Usados Store
Theme URI: https://kids-usados.valemontanha.com.br/
Author: Cline
Description: Tema delicado e moderno para loja de sapatos infantis e usados.
Version: 1.1
Text Domain: sapatos-usados
*/

/* 
   DESIGN ROSE MODERNO - UI/UX REFINADO
   Cores: 
   - Rose: #f4dcd6
   - Rose Dark: #d4a59a
   - Soft Pink: #fff0f0
   - Deep Rose: #8e5d52
   - White: #ffffff
   - Gray Light: #f9f9f9
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #555;
    background-color: #ffffff;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #4a4a4a;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #4a4a4a;
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #d4a59a;
    letter-spacing: -0.5px;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin: 0 18px;
}

.nav ul li a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav ul li a:hover {
    color: #d4a59a;
}

.cart-icon a {
    color: #4a4a4a;
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
    padding: 5px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #d4a59a;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(255, 240, 240, 0.6), rgba(255, 240, 240, 0.6)), url('https://images.unsplash.com/photo-1515488764276-beab7607c1e6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 0;
    color: #4a4a4a;
    padding-top: 80px;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #777;
}

.btn {
    display: inline-block;
    background-color: #d4a59a;
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(212, 165, 154, 0.3);
}

.btn:hover {
    background-color: #c39489;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 154, 0.4);
}

/* Products Section */
.products {
    padding: 7rem 0;
    background-color: #ffffff;
}

.products h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    position: relative;
}

.products h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #f4dcd6;
    margin: 15px auto 0;
    border-radius: 2px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: #f4dcd6;
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.5rem 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.product-card p {
    color: #999;
    font-size: 0.9rem;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #8e5d52;
    margin-bottom: 1.5rem;
}

.add-to-cart {
    background-color: transparent;
    color: #d4a59a;
    border: 2px solid #d4a59a;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.add-to-cart:hover {
    background-color: #d4a59a;
    color: white;
}

/* Payment Methods Section */
.payment-methods {
    padding: 6rem 0;
    background-color: #fdf8f7;
    text-align: center;
}

.payment-methods h2 {
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
}

.payment-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.payment-option {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    width: 180px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.payment-option:hover {
    transform: translateY(-5px);
    border-color: #f4dcd6;
    box-shadow: 0 10px 30px rgba(212, 165, 154, 0.15);
}

.payment-option i {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: #d4a59a;
}

.payment-option span {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
}

/* About & Contact */
.about, .contact {
    padding: 7rem 0;
}

.contact {
    background-color: #ffffff;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-item {
    background-color: #fdf8f7;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item i {
    font-size: 2rem;
    color: #d4a59a;
    margin-bottom: 1.5rem;
    display: block;
}

/* Footer */
.footer {
    background-color: #4a4a4a;
    color: #eee;
    padding: 5rem 0 2rem;
}

.footer h3 {
    color: #f4dcd6;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-section ul li a {
    color: #bbb;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: #f4dcd6;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .products h2 { font-size: 2rem; }
    .header .container { padding: 0 20px; }
    .nav { display: none; } /* Simplicidade mobile */
}