/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Tipografía */
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #1a237e;
  }
  
  /* Navegación */
  nav {
    display: flex;
    justify-content: flex-end;
    background-color: #3f51b5;
    padding: 1rem;
  }
  
  nav ul {
    list-style: none;
  }
  
  nav ul li {
    display: inline;
    margin-left: 1rem;
  }
  
  nav ul li a {
    color: #ffffff;
    text-decoration: none;
  }
  
  /* Header */
  header {
    text-align: center;
    padding: 0;
  }
  
  /* Sección Hero */
  .hero {
    background-color: #e8eaf6;
    padding: 2rem;
    text-align: center;
    position: relative;
  }
  
  .hero h2 {
    margin-bottom: 1rem;
  }
  
  .hero .phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-direction: column;
  }
  
  .hero .phone-number img {
    height: 2rem;
    margin-right: 0.5rem;
  }
  
  .hero .phone-number p {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .btn-call {
    background-color: rgb(16, 99, 207);
    color: white;
    font-size: 28px;
    font-weight: 700;
    border-radius: 18px;
    border: 0;
    padding: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    margin-top: 15px;
}

@media only screen and (max-width: 768px){
button {
    font-size: 20px !important;
}
}

  .hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin-top: 1rem;
  }
  
  .call-to-action {
    margin-top: 1rem;
  }
  
  .call-button {
    display: inline-block;
    background-color: #1a237e;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    width: 100%;
    text-align: center;
  }
  
  /* Sección Servicios */
  .services {
    padding: 2rem;
    background-color: #e3f2fd;
  }
  
  .services h2 {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 1rem;
  }
  
  .service {
    text-align: center;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
  }
  
  .service-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
  }
  
  /* Sección FAQ */
  .faq {
    padding: 2rem;
  }
  
  .faq h2 {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .faq-item {
    margin-bottom: 1rem;
  }
  
  /* Sección Contacto */
  .contact {
    padding: 2rem;
    background-color: #e8eaf6;
  }
  
  .contact h2 {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
  }
  
  .contact-container .phone-number {
    flex: 1;
    min-width: 300px;
    margin-bottom: 2rem;
    }
    
    .contact-container form {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    }
    
    .contact-container form label {
    margin-bottom: 0.5rem;
    }
    
    .contact-container form input[type="text"],
    .contact-container form input[type="email"],
    .contact-container form textarea {
    margin-bottom: 1rem;
    padding: 0.5rem;
    }
    
    .contact-container form input[type="submit"] {
    background-color: #1a237e;
    color: #ffffff;
    border: none;
    padding: 1rem;
    cursor: pointer;
    border-radius: 0.5rem;
    }
    
    /* Pie de página */
    footer {
    background-color: #3f51b5;
    color: #ffffff;
    text-align: center;
    padding: 1rem;
    }
    
    /* Botón flotante para llamar */
    .floating-call-button {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background-color: #1063cf;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    
    .floating-call-button a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    
    /* Estilos responsive */
    @media screen and (max-width: 768px) {
    nav {
    flex-direction: column;
    }
    
    nav ul {
    display: flex;
    justify-content: space-around;
    }
    
    nav ul li {
    margin: 0.5rem 0;
    }
    
    .contact-container {
    flex-direction: column;
    }
    
    .contact-container .phone-number,
    .contact-container form {
    min-width: 100%;
    max-width: 100%;
    }
    }  