/* Estilos adicionales personalizados para Nanda's Stiche */

.section {
    padding: 3rem 0;
    margin-bottom: 1rem;
}

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

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    color: #2d5016;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #2d5016, #d4a574, #2d5016);
    border-radius: 2px;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #2d5016 0%, #1a2f0e 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.hero .btn {
    margin: 0 0.5rem;
    display: inline-block;
}

/* SERVICE CARDS */
.service-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-top: 4px solid #d4a574;
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transform: translateY(-4px);
    border-color: #d4a574;
}

.service-card h3 {
    color: #2d5016;
    margin-top: 0;
    margin-bottom: 1rem;
}

.service-card p {
    flex: 1;
    color: #666;
    margin-bottom: 1rem;
}

.service-price {
    color: #d4a574;
    font-weight: bold;
    font-size: 1.3rem;
    margin: 1rem 0;
}

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

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

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* PRICE CARDS */
.price-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.price-card:hover {
    border-color: #d4a574;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.price-card.featured {
    transform: scale(1.05);
    border-color: #d4a574;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, transparent 100%);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.2);
}

.price-title {
    color: #2d5016;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    color: #d4a574;
    font-weight: bold;
    margin: 1rem 0;
}

/* CARDS */
.card {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.card h3 {
    color: #2d5016;
    margin-bottom: 1rem;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #2d5016;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    font-family: inherit;
    font-size: 1rem;
}

.btn:hover {
    background-color: #1a2f0e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: #d4a574;
    color: white;
}

.btn-secondary:hover {
    background-color: #a67c3f;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .grid,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .section {
        padding: 2rem 0;
    }
}
