* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
    background-color: rgb(143, 15, 15);
}


.logo {
    color: #ffffff;
    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, 255, 255);
    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;
    background-color: rgb(143, 15, 15);
}

.call-button {
    display: inline-block;
    padding: 15px 50px;
    background-color: rgb(61, 246, 98);
    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-color: rgb(51, 51, 53);
}

.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;
    background-color: rgb(143, 15, 15);
    color: #fff;
}

.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-color: rgb(51, 51, 53);
    color: #ecf0f1;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.footer-text {
    margin: 0;
    font-size: 1rem;
}

.footer-links {
    margin-top: 10px;
}

.footer-link {
    color: #fff318;
    text-decoration: none;
    margin: 0 10px;
    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;
    
}



.telf-faq {
    font-size: 1.4rem;
    text-decoration: none;
    font-weight: bold;
}

.telf-header {
    text-decoration: none;
    color: rgb(247, 242, 85)
}