/* Estilos específicos para como-pedir.html */

.como-pedir-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../assets/imagens/SALADA-CAPA.jpg');
    background-size: cover;
    background-position: center;
}

.steps-section {
    padding: 4rem 0;
    background-color: var(--background-light);
}

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

.step-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.step-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-item p {
    color: #666;
    line-height: 1.6;
}

.info-section {
    padding: 4rem 0;
}

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

.info-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-left: 5px solid var(--primary-color);
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.info-card h3 i {
    margin-right: 10px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-card .highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.whatsapp-section {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.whatsapp-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.whatsapp-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-whatsapp-large {
    background: white;
    color: #25D366;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-whatsapp-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
    background: #f0f0f0;
}

.btn-whatsapp-large i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.contact-info {
    background: var(--background-light);
    padding: 3rem 0;
    text-align: center;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-info .phone {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsividade específica */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        padding: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-content h2 {
        font-size: 2rem;
    }
    
    .whatsapp-content h2 {
        font-size: 2rem;
    }
    
    .btn-whatsapp-large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .step-icon {
        font-size: 2.5rem;
    }
}

