* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
    background-color: rgb(5, 10, 81);
}
.logo {
    color: #f8f8f8;
    background-color: rgb(5, 10, 81);
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.2rem;
    }
}

@media (min-width: 769px) {
    .logo {
        font-size: 1.3rem;
    }
}

@media (min-width: 1200px) {
    .logo {
        font-size: 1.5rem;
    }
}

.animated-section {
    text-align: center;
    padding: 20px;
    background-color: rgb(5, 10, 81);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    margin: 20px auto;
}

.animated-title {
    font-size: 2rem;
    color: rgb(236, 236, 29);
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.animated-title::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #1266c5;
    bottom: 0;
    left: -100%;
    animation: slideIn 1.5s ease-in-out forwards;
}

@keyframes slideIn {
    to {
        left: 0;
    }
}

@media (max-width: 768px) {
    .animated-title {
        font-size: 1.5rem;
    }
}

.underlogo {
    color: rgb(228, 225, 255);
}

.bounce-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh;
}

.bounce-text {
    font-size: 2em;
    font-weight: bold;
    color: #ffee03;
    text-align: center;
    animation: fadeIn 2s once;
}

@keyframes fadeIn {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .bounce-text {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .bounce-text {
        font-size: 18px;
    }
}

.javea-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.javea-section {
    display: flex;
    margin-top: -20px;
    justify-content: center;
    align-items: center;
    background-color: rgb(5, 10, 81);
    min-height: 40vh;
    padding: 10px;
}

.javea-container {
    max-width: 800px;
    background-color: #eae9ee;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #333;
}

.javea-title {
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: #000000;
}

.javea-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .javea-title {
        font-size: 1.55rem;
    }

    .javea-text {
        font-size: 1.2rem;
    }

    .javea-container {
        padding: 15px;
    }
}

@media (min-width: 769px) {
    .javea-title {
        font-size: 1.7rem;
    }

    .javea-text {
        font-size: 1.2rem;
    }
}

#response-section {
    display: auto;
    background-color: #f4f4f4;
    padding: 20px;
    margin: 10px;
    text-align: center;
    max-width: 100%;
}

#response-section h1 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 10px;
}

#response-section p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.5;
}

@media (min-width: 768px) {
    #response-section h1 {
        font-size: 1.6rem;
    }
    #response-section p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    #response-section h1 {
        font-size: 1.5rem;
    }
    #response-section p {
        font-size: 1rem;
    }
}

.section-choose {
    text-align: center;
    padding: 20px;
    max-width: 90%;
    margin: auto;
    background-color: #f0f4f8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 40vh;
}

.choose-tittle {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.choose-text {
    font-size: 1.25rem;
    color: #34495e;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 2s ease-in-out 1 forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .choosetittle {
        font-size: 2.5rem;
    }

    .choosetext {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .choose-tittle {
        font-size: 2rem;
    }

    .choose-text {
        font-size: 1.2rem;
    }
}

.links {
    justify-content: center;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.elegant-footer {
    background-color: rgb(46, 46, 50);
    color: #ffffff;
    padding: 20px;
    text-align: center;
    min-height: 26vh;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

@media (min-width: 1200px) {
    .elegant-footer {
        min-height: 20vh;
    }
}

.footer-text {
    margin: 0;
    font-size: 1rem;
}

.footer-links {
    margin-top: 10px;
}

.footer-link {
    color: #f4e923;
    line-height: 1.6;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
    color: #f39c12;
    transform: translateY(-3px);
}

.mapa {
    display: flex;
    justify-content: center;
}

#seccion-cerrajeros-javea-servi {
    position: relative;
    padding: 20px 20px;
    width: 100%;
    height: 80vh;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    overflow: hidden;
}

#seccion-cerrajeros-javea-servi-arbitraje {
    position: relative;
    padding: 10px 10px;
    width: 100%;
    height: 45vh;
    background-color: rgb(46, 46, 50);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    overflow: hidden;
}

#imagen-cerrajeros {
    max-width: 250px;
    max-height: 269px;
    animation: animacionImagen 10s ease-in-out infinite;
    border-radius: 10px;
}

@keyframes animacionImagen {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.05);
      opacity: 0.9;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.call-to-action {
    position: fixed;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
    padding: 12px 23px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cta-button {
    border: none;
    padding: auto;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 25px;
    margin-top: 10px;
    transition: transform 0.3s ease;
}
  
@media (max-width: 768px) {
    .cta-button {
      font-size: 1.2rem;
      padding: auto;
    }
  
    .call-to-action p {
      font-size: 1.3rem;
    }
}
  
@media (max-width: 480px) {
    .cta-button {
      font-size: 1.1rem;
      padding: auto;
    }
  
    .call-to-action p {
      font-size: 1.2rem;
    }
}

.boton-de-llamada {
    display: flex;
    background-color: yellow;
    justify-content: center;
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.6rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}


@media (max-width: 768px) {
    .boton-de-llamada {
        padding: 12px 23px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .boton-de-llamada {
        padding: 11px 22px;
        font-size: 1.4rem;
    }
}

.indep-section {
    background-color: #f9f9f9;
    padding: 1rem;
}

.indep-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.indep-image {
    max-width: 369px;
    height: auto;
    border-radius: 8px;
}

.indep-text {
    margin-top: 1rem;
    text-align: center;
    font-size: 1.3rem;
    max-width: 600px;
}

@media (min-width: 768px) {
    .indep-container {
      flex-direction: row;
      justify-content: center;
      gap: 2rem;
      text-align: left;
    }

    .indep-text {
      margin-top: 0;
    }
}

.cerraduras-javea {
    font-size: 1.5rem;
}

.link-urgente-javea {
    text-decoration: none;
    font-size: 1.2rem;
}