


nav and footer{
    background-color: #5b0000;
    
}

nav .container img {
    border-radius: 50%;
}


 /* Estilos personalizados */
        :root {
            --cafe-color: #5b0000;
            --cafe-light: #D2691E;
            --cafe-dark: #5D2906;
        }
        
        .bg-cafe {
            background-color: var(--cafe-color) !important;
        }
        
        .text-cafe {
            color: var(--cafe-color) !important;
        }
        
        .btn-cafe {
            background-color: var(--cafe-color);
            border-color: var(--cafe-color);
            color: white;
        }
        
        .btn-cafe:hover {
            background-color: var(--cafe-dark);
            border-color: var(--cafe-dark);
            color: white;
        }
        
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                        url('/img/photo-inicial.png');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 320px 0;
        }
        
        .service-card {
            transition: transform 0.3s;
            border: none;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .step-icon {
            width: 70px;
            height: 70px;
            background-color: #e8a22c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.8rem;
        }
        
        .brand-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
            max-height: 60px;
        }
        
        .brand-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }
        
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #e8a22c;
        }