* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
    background: linear-gradient(135deg, #021964, #2d117b, #02185d);
}

.logo {
    color: #e9ca06;
    font-size: 1.4rem;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.3rem;
    }
}

@media (min-width: 769px) {
    .logo {
        font-size: 1.4rem;
    }
}

@media (min-width: 1200px) {
    .logo {
        font-size: 1.5rem;
    }
}

.container {
    width: 100%;
    height: 15vh;
    display: flex;
    flex-direction: column;
}

.franja {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.animated-text {
    font-size: 2rem;
    padding: 20px 20px;
    color: rgb(255, 252, 252);
    position: relative;
    animation: fadeIn 2s;
}

@keyframes slideIn {
    0% {
        transform: translateY(110%);
        opacity: 1;
    }

    25% {
        transform: translateY(100%);
        opacity: 1;
    }

    50% {
        transform: translateY(0);
        opacity: 1;
    }

    75% {
        transform: translateY(-100%);
        opacity: 1;
    }

    100% {
        transform: translateY(-110%);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .animated-text {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .animated-text {
        font-size: 1.9rem;
    }
}

.call-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
}

.call-button {
    display: inline-block;
    padding: 15px 50px;
    background-color: rgb(220, 117, 32);
    color: rgb(0, 0, 0);
    border-radius: 50px;
    text-decoration: none;
    font-size: 26px;
    transition: transform 0.2s;
}

.call-button:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .call-button {
        font-size: 23px;
    }
}

.call-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
    background: linear-gradient(135deg, #021964, #2d117b, #02185d);
}

.bounce-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    height: 10vh;
    background-color: rgb(99, 63, 38);
}

.bounce-text {
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    color: whitesmoke;
    text-align: center;
}

@media (max-width: 768px) {
    .bounce-text {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .bounce-text {
        font-size: 1.6rem;
    }
}

.independent-urgentes * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.independent-urgentes {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
    padding: 10px;
}

.independent-container-urgentes {
    max-width: 800px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #333;
}

.independent-title-urgentes {
    font-size: 1.9rem;
    margin-bottom: 15px;
    color: #110b63;
}

.independent-text-urgentes {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .independent-title-urgentes {
        font-size: 1.8rem;
    }

    .independent-text-urgentes {
        font-size: 1.3rem;
    }

    .independent-urgentes {
        padding: 15px;
    }
}

@media (min-width: 769px) {
    .independent-title-urgentes {
        font-size: 1.7rem;
    }

    .independent-text-urgentes {
        font-size: 1.3rem;
    }
}

#responsive-section {
    display: auto;
    background-color: #f4f4f4;
    padding: 20px;
    margin: 10px;
    text-align: center;
    max-width: 100%;
}

#responsive-section h1 {
    font-size: 1.9rem;
    color: #333;
    margin-bottom: 10px;
}

#responsive-section p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.5;
}

@media (min-width: 768px) {
    #responsive-section h1 {
        font-size: 1.9rem;
    }

    #responsive-section p {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    #responsive-section h1 {
        font-size: 1.8rem;
    }

    #responsive-section p {
        font-size: 1.3rem;
    }
}

.elegant-footer {
    background: linear-gradient(135deg, #021964, #2d117b, #02185d);
    color: #ecf0f1;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.footer-text {
    margin: 0;
    font-size: 1.25rem;
}

.footer-links {
    margin-top: 10px;
}

.footer-link {
    color: #fff318;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.35rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
    color: #f39c12;
    transform: translateY(-3px);
}

@keyframes elegant-glow {
    0% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }
    
    100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 600px) {
    .footer-text {
        font-size: 1rem;
    }

    .footer-link {
        display: block;
        margin: 5px 0;
    }
}

.textodesplega {
    margin: 10px;
    font-size: 1.2rem;
}

#seccion-servicios-cerrajeros {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px;
}
  
.seccion-servicios-cerrajeros .contenido {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
    padding: 10px;
}
  
.seccion-servicios-cerrajeros .imagen-animada img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
}
  
.seccion-servicios-cerrajeros .descripcion {
    margin-top: 20px;
}
  
.seccion-servicios-cerrajeros .descripcion h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
}
  
.seccion-servicios-cerrajeros .descripcion p {
    font-size: 1.4em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}
  
@media (min-width: 768px) {
    #seccion-servicios-cerrajeros {
      flex-direction: row;
      justify-content: space-between;
    }
  
    .seccion-servicios-cerrajeros .contenido {
      flex-direction: row;
      text-align: left;
      max-width: 90%;
    }
  
    .seccion-servicios-cerrajeros .imagen-animada {
      margin-right: 30px;
    }
  
    .seccion-servicios-cerrajeros .descripcion h2 {
      font-size: 1.7rem;
    }
  
    .seccion-servicios-cerrajeros .descripcion p {
      font-size: 1.3rem;
    }
}
  
@media (min-width: 1200px) {
    #seccion-servicios-cerrajeros {
      max-width: 1200px;
      margin: 40px auto;
    }
  
    .seccion-servicios-cerrajeros .contenido {
      max-width: 80%;
    }
}

.o-urgentes {
    font-size: 1.7rem;
    line-height: 1.6;
    color: #555;
}

.texto-arbitraje {
    font-size: 1.1rem;
    line-height: 1.6;    
}

.o-arbitraje {
    font-size: 1.2rem;
}


.texto-24h {
    font-size: 1.4rem;
}


.seccion-urgentes-benidorm {
    max-width: 700px;
    margin: 1.5rem auto;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-family: system-ui, sans-serif;
    color: #333;
    transition: all 0.3s ease-in-out;
}

.seccion-urgentes-benidorm h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: #040b7a;
}

.seccion-urgentes-benidorm p {
    font-size: 1rem;
    line-height: 1.6;
}

@media (min-width: 600px) {
    .seccion-urgentes-benidorm {
      padding: 2rem;
    }

    .seccion-urgentes-benidorm h2 {
      font-size: 2rem;
    }

    .seccion-urgentes-benidorm p {
      font-size: 1.125rem;
    }
}

.texto-telefono {
    font-size: 1.4rem;
    color: blue;
    
}

.whatsapp-cta-section {
    padding: 2rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
    text-align: center;
    color: #ffffff;
}

.whatsapp-cta-container {
    max-width: 480px;
    margin: 0 auto;
}

.whatsapp-cta-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.whatsapp-cta-subtext {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #efefef;
}

.whatsapp-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: #25d366;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.whatsapp-cta-button:hover,
.whatsapp-cta-button:focus {
    background-color: #1ebe5d;
    transform: translateY(-2px);
    outline: none;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@media (min-width: 768px) {
  .whatsapp-cta-heading {
    font-size: 2rem;
  }

  .whatsapp-cta-subtext {
    font-size: 1.125rem;
  }

  .whatsapp-cta-button {
    font-size: 1.125rem;
    padding: 1rem 2rem;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}

/* Sección: Imagen + Texto descriptivo */
.responsive-image-section {
  padding: 2rem 1rem;
  background-color: #f5f7fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.image-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1.5rem;
}

.section-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.section-image:hover {
  transform: scale(1.02);
}

.section-text {
  max-width: 600px;
  text-align: center;
  padding: 0 1rem;
}

.section-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #222;
  font-weight: 600;
}

.section-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Tablet */
@media (min-width: 768px) {
  .image-text-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }

  .section-text {
    text-align: left;
    padding: 0;
  }

  .section-text h2 {
    font-size: 2rem;
  }

  .section-text p {
    font-size: 1.05rem;
  }
}

@media (min-width: 1024px) {
  .section-text h2 {
    font-size: 2.2rem;
  }

  .section-text p {
    font-size: 1.1rem;
  }
}


.imagen-segunda {
    min-width: 269px;
    min-height: 269px;
}