﻿body {
    font-family: Arial, sans-serif;
    font-family: "Poppins", sans-serif;
}

.cintillo{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: white;
    background: black;
    color: white;
    font-size: 24px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;

    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.3); /* Sombra suave */
}
.cintillo img{
    width: 30px;
}
.cintillo a{
    color: white;
}


.llamanos{
    margin-bottom: 90px;
}


.hero {
    background: url('../images/1.jpg') no-repeat center center/cover;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
}
.hero h1 {
    background: rgba(255, 0, 0, 0.9);
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    display: inline-block;
    padding: 0 10px;
}
.lead{
    background: rgba(0, 0, 0, 0.8);
    font-weight: bold;
    font-size: 22px;
    padding: 10px;
}
.service-icon {
    font-size: 3rem;
    color: #007bff;
}
.contact-section {
    background: #007bff;
    color: white;
    padding: 50px 20px;
    text-align: center;
}
.contact-section a {
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}


.cuadro{
    width: 100%;
}


.servicios{
    font-size: 20px;
}


h4{
    color: blue;
    font-weight: bold;
    font-size: 32px;
}

@media screen and (max-width:1400px){

}

@media screen and (max-width:1200px){

}

@media screen and (max-width:992px){

}

@media screen and (max-width:768px){

}

@media screen and (max-width:576px){
    
}

.chat{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #24d366;
    font-weight: bold;
    font-size: 20px;
    color: white;
    padding: 6px 17px;
    border-radius: 20px;

    animation-name: pulse;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: 0s;
    animation-iteration-count: 100;
}
@keyframes pulse {
    from,to {
        transform: scale3d(1,1,1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }
}

.pulse {
    animation-name: pulse
}
