.cabin-normal {
    font-family: "Cabin", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "slnt" 0;
}
  
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    font-family: "Cabin", sans-serif;
}
  
.body {
    background-color: white;
}

/* ========== MENU ========== */
.menu {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    width: 100%;
    padding: 1rem;  
}
  
.menu-logo-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    display: inline-block; 
}
  
.menu-logo {
    height: 180px;
    width: auto;
}
  
.menu-items {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
    width: 100%; 
    padding: 0 2rem;
}
  
.menu-item {
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
.menu-item:hover {
    background-image: url('images/brush.webp');
    background-size: cover;
    background-position: center;
}
  
.menu-item button {
    width: 150px;
    min-height: 80px;
    font-size: 1.6rem;
    font-family: "Cabin", sans-serif;
    font-weight: bold;
    background: none;
    border: 0px;
    color: #222; 
    transition: all 0.4s ease-in-out;
}
  
.menu-item button:hover {
    color: #FFF;
    cursor: pointer;
}

/* ========== HEADER ========== */
.head {
    display: grid;
    padding: 20px;
    width: 100%;
    font-size: 30px;
}
  
.head .heading {
    text-align: center;
    align-self: center;
    font-weight: bold;
    width: fit-content;
    margin: 0 auto;
}

.head .heading h1 {
    font-weight: 400;
    margin: 0;
    color: #e6cc9c;
}

/* ========== LINER ========== */
.liner {
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.heading .liner {
    width: 100%;
    max-width: 600px;
}

.section-divider .liner {
    width: auto;
    max-width: 240px;
}

/* ========== CARDS ========== */

.cards {
    position: relative;
    width: 100%;
    min-height: 1200px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 3rem;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 0;
    opacity: 0.6;
}


.card-1,
.card-2,
.card-3 {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card-1 {
    align-self: flex-start; 
    margin-left: 10%;
}

.card-2 {
    align-self: flex-end;
    margin-right: 10%;
}

.card-3 {
    align-self: flex-start; 
    margin-left: 10%;
}

.card-1 img,
.card-2 img,
.card-3 img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.card-1 h3,
.card-2 h3,
.card-3 h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e6cc9c;
}

.card-1 p,
.card-2 p,
.card-3 p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555050;
}

/* ========== Section divider ========== */

.section-divider {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    overflow: clip;
}

.background-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.section-divider h3 {
    position: relative;
    z-index: 1;
    color: #222;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

/* ========== STEPS ========== */

.steps-container {
    position: relative;
    overflow: clip;
}

.steps-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('images/paint.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1; 
    z-index: 0;
}

.first-step {
    display: flex;
    align-items: center;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

.first-step img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.first-step > div {
    background-color: #2D2D2D;
    color: white;
    padding: 2.5rem 3rem;
    border-radius: 20px;
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.first-step h3 {
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0;
    text-align: center;
    font-family: "Cabin", sans-serif;
}

.first-step::before {
    content: "1";
    position: absolute;
    left: 350px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #E1CEAA;
    color: #2D2D2D;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 600;
    z-index: 3;
    font-family: "Cabin", sans-serif;
}

.second-step {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    position: relative;
    flex-direction: row-reverse; 
}

.second-step img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.second-step > div {
    background-color: #2D2D2D;
    color: white;
    padding: 2.5rem 3rem;
    border-radius: 20px;
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.second-step h3 {
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0;
    text-align: center;
    font-family: "Cabin", sans-serif;
}

.second-step::before {
    content: "2";
    position: absolute;
    right: 350px; 
    top: 50%;
    transform: translateY(-50%);
    background-color: #E1CEAA;
    color: #2D2D2D;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 600;
    z-index: 3;
    font-family: "Cabin", sans-serif;
}


.third-step {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    position: relative;
}

.third-step img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.third-step > div {
    background-color: #2D2D2D;
    color: white;
    padding: 2.5rem 3rem;
    border-radius: 20px;
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.third-step h3 {
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0;
    text-align: center;
    font-family: "Cabin", sans-serif;
}


.third-step::before {
    content: "3";
    position: absolute;
    left: 350px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #E1CEAA;
    color: #2D2D2D;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 600;
    z-index: 3;
    font-family: "Cabin", sans-serif;
}

/* ========== FOOTER ========== */

.footer-container {
    width: 100%;
    min-height: 288px;
    position: relative;
    background: white;
    overflow: hidden;
}
  
.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #E6E6E6;
    position: absolute;
    left: 0;
    top: 0;
}

.footer-main {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    width: auto;
    max-width: 280px;
    height: 180px;
    border-radius: 20px;
    object-fit: contain;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
  
.footer-title {
    color: black;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    text-align: center;
    word-wrap: break-word;
}
  
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
  
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}
  
.social-icon:hover {
    background-color: #f0f0f0;
}
  
.social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-menu-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
  
.footer-menu-left a,
.footer-menu-left div {
    color: black;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    word-wrap: break-word;
    cursor: pointer;
    transition: color 0.3s;
    text-decoration: none;
}
  
.footer-menu-left a:hover,
.footer-menu-left div:hover {
    color: #666;
}

.footer-credits {
    text-align: center;
    color: black;
    font-size: 10px;
    font-weight: 500;
    line-height: 15px;
    margin-top: 2rem;
}


/* ========== SCROLL ANIMATIONS ========== */

.menu {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.menu.menu-loaded {
    opacity: 1;
    transform: translateY(0);
}

.video-background {
    opacity: 0;
    transition: opacity 1.5s ease-out;
}

.video-background.video-loaded {
    opacity: 0.6;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}


.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.card-1.scroll-animate {
    transform: translateX(-60px) translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.card-1.animate-in {
    transform: translateX(0) translateY(0);
}

.card-2.scroll-animate {
    transform: translateX(60px) translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.card-2.animate-in {
    transform: translateX(0) translateY(0);
}

.card-3.scroll-animate {
    transform: translateX(-60px) translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.card-3.animate-in {
    transform: translateX(0) translateY(0);
}

.section-divider.scroll-animate {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.section-divider.animate-in {
    opacity: 1;
    transform: scale(1);
}

.first-step.scroll-animate,
.third-step.scroll-animate {
    transform: translateX(-40px) translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.first-step.animate-in,
.third-step.animate-in {
    transform: translateX(0) translateY(0);
}

.second-step.scroll-animate {
    transform: translateX(40px) translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.second-step.animate-in {
    transform: translateX(0) translateY(0);
}

.head.scroll-animate {
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.head.animate-in {
    transform: translateY(0);
}

/* ========== WHATSAPP ========== */

.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
.whatsapp-btn:hover {
    transform: scale(1.1);
}
  
.whatsapp-btn img {
    width: 100%;
    height: 100%;
}

/* ========== RESPONSIVE DESIGN ========== */
  
@media (max-width: 1024px) {

    .menu-logo {
        height: 140px;
    }

    .menu-items {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .menu-item button {
        width: 120px;
        min-height: 60px;
        font-size: 1.3rem;
    }

    .head {
        font-size: 26px;
        padding: 18px;
    }

    .cards {
        min-height: 1000px;
        gap: 2.5rem;
    }

    .card-1,
    .card-2,
    .card-3 {
        max-width: 450px;
    }

    .card-1 {
        margin-left: 5%;
    }

    .card-2 {
        margin-right: 5%;
    }

    .card-3 {
        margin-left: 5%;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-logo {
        grid-column: 1;
        grid-row: 1 / 3;
        max-width: 220px;
    }
    
    .footer-title {
        grid-column: 2;
        grid-row: 1;
    }
    
    .footer-social {
        grid-column: 2;
        grid-row: 2;
    }
    
    .footer-menu-left {
        grid-column: 1 / 3;
        grid-row: 3;
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
        justify-self: center;
    }
    
    .footer-divider {
        grid-column: 1 / 3;
        grid-row: 4;
    }
    
    .footer-credits {
        grid-column: 1 / 3;
        grid-row: 5;
    }
}
  
@media (max-width: 768px) {
  
    .menu {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0.5rem;
    }
    
    .menu-logo {
        height: 100px;
    }
    
    .menu-items {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
  
    .menu-item {
        min-width: auto;
    }
  
    .menu-item button {
        width: 100px;
        min-height: 50px;
        font-size: 1.1rem;
    }
  
    .menu-item:hover {
        background-size: contain;
    }

    .head .heading {
        width: 100%;
    }

    .head .heading h1 {
        font-size: 1.8rem;
    }
    .heading .liner {
        max-width: 315px;
    }
    
    .section-divider .liner {
        max-width: 180px;
    }

    .cards {
        min-height: auto;
        overflow: visible;
        padding: 1rem 0.75rem;
        gap: 1.5rem;
    }

    .card-1,
    .card-2,
    .card-3 {
        max-width: 92%;
        width: 92%;
        box-sizing: border-box;
        padding: 1.5rem;
        align-self: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .card-1 h3,
    .card-2 h3,
    .card-3 h3 {
        font-size: 1.3rem;
    }

    .card-1 p,
    .card-2 p,
    .card-3 p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Animaciones  móvil */
    
    .card-1.scroll-animate,
    .card-2.scroll-animate,
    .card-3.scroll-animate {
        transform: translateY(40px);
    }

    .card-1.animate-in,
    .card-2.animate-in,
    .card-3.animate-in {
        transform: translateY(0);
    }

    .section-divider {
        min-height: 300px;
    }

    .section-divider h3 {
        font-size: 2rem;
    }

    .section-divider .liner {
        width: 250px;
    }
    
    .first-step,
    .second-step,
    .third-step {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        margin: 3rem auto;
    }

    .first-step img,
    .second-step img,
    .third-step img {
        max-width: 100%;
    }

    .first-step > div,
    .second-step > div,
    .third-step > div {
        padding: 2rem 1.5rem;
        min-width: auto;
        width: 100%;
    }

    .first-step h3,
    .second-step h3,
    .third-step h3 {
        font-size: 2rem;
    }

    .first-step::before,
    .second-step::before,
    .third-step::before {
        left: 50%;
        right: auto;
        top: auto;
        bottom: 48%;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .footer {
        padding: 2rem 1rem;
    }
    
    .footer-container {
        min-height: auto;
        padding: 2rem 1rem;
    }
    
    .footer-main {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
  
    .footer-logo {
        grid-column: 1;
        grid-row: 1;
        max-width: 200px;
        margin: 0 auto;
    }
  
    .footer-title {
        grid-column: 1;
        grid-row: 2;
        font-size: 1.25rem;
    }
  
    .footer-social {
        grid-column: 1;
        grid-row: 3;
    }
  
    .footer-menu-left {
        grid-column: 1;
        grid-row: 4;
        flex-direction: column;
        align-items: center;
        justify-self: center;
        gap: 1rem;
    }
  
    .footer-divider {
        grid-column: 1;
        grid-row: 5;
    }
  
    .footer-credits {
        grid-column: 1;
        grid-row: 6;
    }
}
  
@media (max-width: 480px) {
  
    .menu {
        padding: 0.25rem;
    }
  
    .menu-logo {
        height: 80px;
    }
    
    .menu-items {
        gap: 0.25rem;
        margin-top: 0.5rem;
    }
  
    .menu-item button {
        width: 70px;
        min-height: 40px;
        font-size: 0.85rem;
    }

    .head {
        padding: 12px;
    }

    .head .heading {
        width: 100%;
    }

    .head .heading h1 {
        font-size: 1.4rem;
    }

    .liner {
        display: none;
    }

    .card-1,
    .card-2,
    .card-3 {
        max-width: 96%;
        width: 96%;
        padding: 1rem;
    }

    .card-1 h3,
    .card-2 h3,
    .card-3 h3 {
        font-size: 1.2rem;
    }

    .card-1 p,
    .card-2 p,
    .card-3 p {
        font-size: 0.85rem;
    }

    .section-divider {
        min-height: 150px;
    }

    .section-divider h3 {
        font-size: 1.5rem;
        padding: 0 0.5rem;
    }

    .steps-container {
        padding: 0;
    }

    .steps-container::before {
        height: 100%;
    }

    .first-step {
        margin-top: 0;
        padding: 1rem;
    }

    .second-step,
    .third-step {
        padding: 1rem;
        margin-bottom: 0;
    }

    .first-step > div,
    .second-step > div,
    .third-step > div {
        padding: 1.5rem 1rem;
    }

    .footer-container {
        padding: 1.5rem 1rem;
        min-height: auto;
    }

    .footer-main {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-logo {
        max-width: 130px;
        height: auto;
    }
  
    .footer-title {
        font-size: 1rem;
    }
  
    .footer-menu-left {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }
    
}