 @import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css');  
 @import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css');
 
body {
font-family: 'Montserrat', sans-serif;
  padding-top: 35px; 
  overflow-x: hidden;
}

#inicio h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem; 
}

#inicio h3 {
    font-family: 'Bangers', cursive;
    font-size: 2rem; 
}


@media (max-width: 768px) {
    #inicio h1 {
        font-size: 3rem;
    }
    #inicio h3 {
        font-size: 1.5rem;
    }
}

 .hero {
    position: relative;
    background: url('img/jerry.jpg') no-repeat center center;
    background-size: cover;
    min-height: 150vh;
    padding:50 px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden; 
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4); 
    z-index: 1;
}
@media (max-width: 768px) {
    .hero {
        background-position: center top; 
        min-height: 80vh; 
        padding: 30px 10px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero h3 {
        font-size: 1.5rem;
    }
}
.hero h1 {
    position: relative; 
    z-index: 2;
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}
.hero h3{
    position:relative;
    z-index:2;
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.service-icon {
    font-size: 3rem;
    color: #c59d5f;
}
footer {
    background-color: #222;
    color: white;
    padding: 20px 0;
}
footer a {
    color: #c59d5f;
    text-decoration: none;
}
.navbar-nav {
margin: 0 auto;
}
.navbar-nav .nav-item {
margin: 0 10px;
}
.navbar-nav .nav-link:hover {
background-color: white;
color: black !important;
border-radius: 5px;
transition: 0.3s;
}

.navbar-nav {
    margin: 0 auto; 
}

.navbar-nav .nav-item {
    margin: 0 10px;
}


.navbar-nav .nav-link:hover {
    background-color: white;
    color: black !important; 
    transition: 0.3s;
}
.navbar-nav .nav-item{
    font-family: 'Calisto MT', 'sans-serif';
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.service-card {
    border: 1px solid rgb(179, 158, 83);
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 0 25px rgb(179, 158, 83), 0 0 40px rgb(179, 158, 83);
    border-color: rgb(179, 158, 83);
}
.gift-card{
   background-color: #c9a23b;       
    padding: 25px;           
    border-radius: 20px;       
    box-shadow: 0 6px 12px rgba(0,0,0,0.2); 
    display: inline-block;      
    padding: 30px;
    border-radius: 10px;
    height:100%;
    transition: all 0.3s ease;

}
.service-gift-card {
    border: 2px solid #bbb6b9;
    box-shadow: 0 0 8px #bbb6b9; 
    padding: 10px 15px;         
    border-radius: 30px;
    height: auto;                  
    width: fit-content;            
    transition: all 0.3s ease;
    display: inline-block;        
}

.service-gift-card:hover {
    transform: translateY(-5px) scale(1.02); 
    box-shadow: 0 0 15px #e8e6e7, 0 0 25px #e8e6e7;
    border-color: #e8e6e7;
}   
.service-gift-card-link {
    text-decoration: none; 
}
.whatsapp-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 0 10px #25d366, 0 0 20px #128c7e;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: pulse 1.5s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #25d366, 0 0 40px #128c7e;
}

.whatsapp-btn::before, .whatsapp-btn::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(37,211,102,0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: ripple 2s infinite;
}
.whatsapp-btn::after {
    animation-delay: 1s;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes ripple {
    0% { transform: scale(0.5); opacity: 0.7; }
    100% { transform: scale(2); opacity: 0; }
}

.whatsapp-btn i {
    z-index: 1; 
}

.whatsapp-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 0 10px #25d366, 0 0 20px #128c7e;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: pulse 1.5s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #25d366, 0 0 40px #128c7e;
}

.whatsapp-btn::after {
    animation-delay: 1s;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes ripple {
    0% { transform: scale(0.5); opacity: 0.7; }
    100% { transform: scale(2); opacity: 0; }
}

.whatsapp-btn i {
    z-index: 1;
}
#floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}
.floating-btn.phone {
    
    background-color: rgba(51, 51, 51, 0.6); /* semi-transparente */
    color: rgb(6, 6, 6);
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    transition: all 0.3s;
    display: none; 
    
}
.floating-btn.phone:hover {
    background-color: #25D366; 
    transform: scale(1.1); 
    color: white;
}

.floating-btn.up {
    background-color: rgba(51, 51, 51, 0.6); 
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: all 0.3s;
    display: none;
}

.floating-btn:hover {
    background-color: rgb(199, 204, 199);
    color: #333; 
    transform: scale(1.15);
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

#title-cards {
    background-color: rgb(232, 232, 230); 
    text-align: center;
    font-family: 'Montserrat', sans-serif; 
    padding: 70px 20px 20px; 
    background: #fff; 
    position: relative;
    z-index: 1;
}
#title-cards .home-icon {
  padding: 40px;
  position: absolute;
  top: 20px;
  right: 20px;
  text-decoration: none;
  color: black;
  transition: transform 0.2s ease;
}

#title-cards .home-icon:hover {
  transform: scale(1.2);
}

#title-cards h1 {
    color: #060606; 
    margin: 0;
    font-weight: 700;
}
.service-giftcard {
    border: 1px solid  rgb(185, 153, 45);
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
}

.service-giftcard:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 0 25px  rgb(185, 153, 45), 0 0 40px  rgb(185, 153, 45);
    border-color:  rgb(185, 153, 45);
}
.service-giftcard-link {
    text-decoration: none; 
}
.service-giftcard:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
#title-cards .title-container {
    display: flex;
    align-items: center;
    justify-content: space-between; 
}
