



body {
    background: #FAE80C;
}

.header-content .navbar-list .navbar-text li a{
    text-decoration: none;
    list-style: none;
    color: var(--Black-2);
    font-weight: 400;
}

.header__burger-line {
    background-color: var(--Black-1);
}

.header__burger_opened .header__burger-line {
    background-color: var(--White-1); /* Cambia el color de las líneas cuando el menú está abierto */
}


.master-form-grid {
    display: grid;
    grid-template-rows: repeat(3, auto); 
    grid-template-columns: repeat(20, 1fr); 
    gap: 20px;
}

.form-step-hidden {
    display: none !important;
}

.invisible-index {
    display: none !important;
} 

/*---------------------------------------------------------------------------------------------------------------------------------------------------
1) Services Section
----------------------------------------------------------------------------------------------------------------------------------------------------*/

.services-section-grid {
    width: 100%;
    height: 100%;
    grid-area: 2 / 1 / 2 / 21; /* row-start, column-start, row-end, column-end */
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    grid-template-rows: 105px 255px 80px 680px 30px 130px 130px 380px;
    grid-gap: 20px;
}

.service-heading {
    width: 100%;
    height: 100%;
    grid-area: 2 / 2 / 2 / 9; /* row-start, column-start, row-end, column-end */
    display: flex;
    align-items: flex-end;
}

.back-button-section {
    width: 100%;
    height: 100%;
    grid-area: 2 / 19 / 2 / 20; /* row-start, column-start, row-end, column-end */

    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.back-button-icon-container {
    margin-bottom: 52%;
}

.back-button-icon img {
    width: 16px; /* Establece el tamaño de la imagen */
    transform: rotate(180deg); /* Rota la imagen para que mire a la izquierda */
}

.back-text-button {
    text-decoration: none;
    color: var(--Black-1);
    margin-bottom: 56%;
}


.photo-service-section {
    width: 100%;
    height: 100%;
    grid-area: 4 / 2 / 4 / 20; /* row-start, column-start, row-end, column-end */
    display: flex;
    align-items: flex-end;
    background-color: black;
}

/* Estilos del marco del servicio de fotos */
.photo-service-frame {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.photo-service-frame img {
    max-width: 100%;
    object-fit: cover; /* Escala la imagen para cubrir completamente el contenedor sin distorsión */
    transition: transform 1.3s cubic-bezier(.215,.61,.355,1); /* Agrega una transición suave para transformaciones */
}

.photo-service-frame img:hover {
    transform: scale(1.2); /* Escala la imagen al 110% del tamaño original */
    transition: 1s cubic-bezier(.215,.61,.355,1); /* Agrega una transición suave */
}


.number-service-section {
    width: 100%;
    height: 100%;
    grid-area: 6 / 2 / 6 / 3; /* row-start, column-start, row-end, column-end */

    display: flex;
    align-items: flex-start;

    color: var(--Black-1);
}

.number-service-section h5{
    color: var(--Black-1);
}



.title-service-1 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 2 / 7 / 5; /* row-start, column-start, row-end, column-end */

    display: flex;
    align-items: flex-start;

    color: var(--Black-1);
}


.title-service-2 {
    width: 100%;
    height: 100%;
    grid-area: 7 / 13 / 7 / 20; /* row-start, column-start, row-end, column-end */

    display: flex;
    align-items: flex-start;
}

.title-service-2 p{
    color: var(--Black-1);
    font-size: 32px;
    font-weight: 400;
    white-space: nowrap;
}


.service-description-text {
    width: 100%;
    height: 100%;
    grid-area: 8 / 13 / 8 / 20; /* row-start, column-start, row-end, column-end */

    display: flex;
    align-items: flex-start;
    
    color: var(--Black-1);
    line-height: 1.5;
}



/*---------------------------------------------------------------------------------------------------------------------------------------------------
2) Footer
----------------------------------------------------------------------------------------------------------------------------------------------------*/

.footer {
    width: 100%;
    height: 100%;
    grid-area: 3 / 1 / 3 / 21; /* row-start, column-start, row-end, column-end */
    background-color: var(--Black-2);
    height: 350px;
}
