body {
    overflow-x: hidden;
    padding-top: 80px; /* Compensar navbar fijo */
}

* {
    font-family: "proxima-nova", sans-serif;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

.whatsapp-button {
    position: fixed;
    bottom: 75px;
    right: 40px;
    background-color: #F25836;
    color: #fff;
    border: none;
    border-radius: 44px;
    padding: 20px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 10000;

    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-button img {
    width: 20px;
    height: 20px;
}

.whatsapp-button:hover {
    background-color: #da4524;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav ul {
    display: flex;
    gap: 70px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: #0D0D0D;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 12px 0px;
    border-radius: 18px;
    position: relative;
    transition: all 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #025951;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.2s cubic-bezier(0.83, 0.06, 0.38, 0.9);
}

nav ul li a:hover {
    background-color: transparent;
}

nav ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

nav ul li a.active {
    color: #025951;
    font-weight: 600;
}

nav ul li a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}


nav button.nav-contact-btn {
    background: #F25836 0% 0% no-repeat padding-box;
    border-radius: 44px;
    border: none;
    color: #fff;
    padding: 15px 35px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

nav button.nav-contact-btn:hover {
    background-color: #da4524;
}

/* Hamburger Menu - Hidden by default */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #025951;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.hero {
    display: flex;
    background: transparent linear-gradient(126deg, #F1F2E4 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    position: relative;
    min-height: 633px;
}

.hero .hero-image {
    position: absolute;
    right: -477px;
    top: 62px;
}

.hero .hero-title-container {
    margin-top: 125px;
    margin-left: 320px;
}

.hero h1 {
    color: #025951;
    font-size: 50px;
    line-height: 45px;
    font-weight: 500;
    max-width: 48%;
    margin-bottom: 60px;
}

.hero button {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 44px;
    border: none;
    color: #025951;
    font-size: 19px;
    padding: 22px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero button:hover {
    background-color: #ebf5ed;
    transform: translateY(-2px);
}

.hero button img {
    width: 15px;
    height: 15px;
}

/* Sección tipos */
.types {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 100;
    margin-top: 40px;
}

.types h3,
.types h2,
.types h2.price,
.types p {
    margin: 0;
}

.types .type {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 20px;
    padding: 20px 50px;
    width: 300px;
    height: 400px;
    background-color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.types .type:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0px 5px 20px #00000029;

}

.types .type h3 {
    color: #707070;
    font-weight: 300;
    font-size: 20px;
    text-align: center;
    margin-top: 21px;
}

.types .type .title {
    color: #025951;
    font-size: 30px;
    font-weight: 700;
}

.types .type .price {
    color:#F25836;
    font-size: 25px;
    font-weight: 600;
}

.types .type p {
    color: #707070;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 25px;
    text-align: center;
}


/* Sección features */

.features{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 150px;
}

.features-container{
    width: 65%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 30px;
}

.features-container .feature{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.features-container .feature img.flipping {
    animation: flip 0.6s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

@keyframes flip {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.features-container .feature img {
    width: 115px;
    height: 115px;
}

.features-container .feature h3 {
    font-weight: 400;
    font-size: 20px;
    margin: 0;
}

.features-button {
    border: none;
    background: #025951;
    color: #fff;
    padding: 18px 35px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 44px;

    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
}

.features-button:hover {
    background-color: #034a42;
    transform: translateY(-2px);
}


/* Sección house detail */
.house-detail {
    margin-top: 100px;
}

.details-container {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 600px;
    padding-left: 15%;
}

.details-container .left-section {
    width: 30%;
}

.details-container .left-section h3 {
    color: #707070;
    font-size: 20px;
    font-weight: 400;
}

.details-container .left-section h1 {
    color: #025951;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 48px;
}

.details-container .left-section p {
    color: #707070;
    font-size: 14px;
    font-weight: 400;

}

.details-container .left-section .description {
    font-size: 16px;
    margin-bottom: 30px;
}

.details-container .left-section .price {
    color: #F25836;
    font-size: 26px;
    font-weight: 700;
}

.details-container .left-section .home-button {
    border: none;
    background: #025951;
    color: #fff;
    padding: 18px 35px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 44px;

    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 40px;
}

.details-container .left-section .home-button:hover {
    background-color: #034a42;
    transform: translateY(-2px);
}

.details-container .left-section .home-button img {
    width: 15px;
    height: 15px;
    margin-top: 1px;
}

.details-container .right-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 1234px;
    max-height: 592px;

    position: absolute;
    right: -175px;
    top: 0;
}

.home-dry .details-container .right-section img {
    max-width: 819px;
    max-height: 577px;
    right: 70px;
}

.home-traditional .details-container .right-section img {
    right: -100px;
}

.technical-details {
    width: 70%;
    margin: auto;
    border-bottom: 1px solid #CBCBCB;
    padding-bottom: 50px;
}

.technical-details .title-technical-details {
    color: #025951;
    border: 2px solid #025951;
    border-radius: 44px;
    padding: 10px 20px;
    margin-bottom: 50px;
    width: fit-content;
    font-size: 18px;
    font-weight: 400;
}

.technical-details-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 35px;
    row-gap: 40px;
}

.technical-details-item {
    display: flex;
    justify-content: center;
    gap: 25px;
    width: 23%;
    border-bottom: 1px solid #CBCBCB;
    height: 98px;
}

.technical-details-item:last-child {
    border-bottom: none;
}

.technical-details-item .content-technical-details {
    width: 60%;
}

.technical-details-item .circle {
    min-width: 39px;
    height: 40px;
    border-radius: 50%;
    background-color: #F1F2E4;
    margin-top: 5px;
}

.technical-details-item h5 {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 10px;
    line-height: 24px;
}

.technical-details-item p {
    font-size: 16px;
    font-weight: 400;
    color: #707070;
}

/* Sección renders */
.renders-container {
    display: flex;
    width: 70%;
    margin: auto;
    margin-top: 75px;
}

.renders-container .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 22%;
}

.renders-container .title h1 {
    color: #025951;
    font-size: 27px;
    font-weight: 700;
    align-self: flex-start;
}

.renders-container .title p {
    color: #707070;
    font-size: 14px;
    font-weight: 400;
    align-self: flex-start;
}

.renders-container .title button {
    background-color: #F25836;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 44px;
    font-size: 17px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 50px;
}

.renders-container .title button:hover {
    background-color: #da4524;
    transform: translateY(-2px);
}

.renders-container .title .tiny {
    font-size: 14px;
    font-weight: 400;
    color: #707070;
    margin-top: 20px;
    align-self: center;
}

.preview {
    display: flex;
    gap: 15px;
}

.preview .main-image-container {
    width: 586px;
    height: 371px;
    background-color: #EFEFEF;
    border-radius: 20px;
}

.preview .mini-images-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.preview .mini-image-container {
    width: 285px;
    height: 137px;
    border-radius: 20px;
    background-color: #EFEFEF;
}


/* Sección pricing */
.pricing-container {
    width: 70%;
    margin: auto;
    margin-top: 75px;
}

.pricing-container h1 {
    color: #393939;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
}


.pricing-container-items {
    display: flex;
    gap: 30px;
}

.pricing-container .pricing {
    width: 20%;
}

.pricing-container .pricing p{
    color: #707070;
    font-size: 14px;
    font-weight: 400;
}

.pricing-container .pricing h2{
    color: #F25836;
    font-size: 32px;
    font-weight: 700;
}

.pricing-container .financing-container {
    display: flex;
    gap: 35px;
    width: 43%;
}

.pricing-container .financing-container img {
    width: 70px;
    height: 69px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-container .financing-container img.flipping {
    animation: flip 0.6s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

.pricing-container .financing-container h3{
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.pricing-container .financing-container p{
    color: #707070;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}

.pricing, .financing-container {
    border-bottom: 1px solid #CBCBCB;
    padding-bottom: 25px;
}

.pricing-container .pricing-button {
    background-color: #025951;
    color: #fff;
    border: none;
    padding: 18px 30px;
    border-radius: 44px;
    font-size: 17px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 50px;
}

.pricing-container .pricing-button:hover {
    background-color: #034a42;
    transform: translateY(-2px);
}

/* Sección financial planning */

.financial-planning {
    width: 90%;
    margin: auto;
    margin-top: 100px;
}

.financial-planning .top-section {
    background-color: #025951;
    border-radius: 31px 31px 0px 0px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;

    max-height: 400px;
    overflow: hidden;
}

.financial-planning .top-section .top-section-content {
    width: 33%;
}

.financial-planning .top-section .top-section-content h3 {
    color: #C9C9C9;
    font-size: 22px;
    font-weight: 300;
}

.financial-planning .top-section .top-section-content h1 {
    color: #F1F2E4;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
}

.financial-planning .top-section .top-section-content p {
    color: #C9C9C9;
    font-size: 16px;
    font-weight: 200;
    line-height: 22px;
}

.financial-planning .top-section img {
   margin-top: 150px;
}

.financial-planning .bottom-section {
    background-color: #F1F2E4;
    border-radius: 0px 0px 31px 31px;
    position: relative;
    padding: 50px 250px;
    padding-bottom: 100px;
}

.financial-planning .bottom-section h3 {
    color: #025951;
    font-size: 24px;
    font-weight: 600;
    text-decoration: underline;
    margin-bottom: 40px;
}

.financial-planning .bottom-section .steps-container {
    display: flex;
    justify-content: center;
}

.financial-planning .bottom-section .step p{
    color: #025951;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    width: 75%;
}

.financial-planning .bottom-section .step img {
    width: 83px;
    height: 83px;
    margin-bottom: 10px;
}

.financial-planning .bottom-section .bottom-section-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -25%;
    left: 0;
    right: 0;
}

.bottom-section-button button {
    background-color: #025951;
    color: #fff;
    border: none;
    padding: 23px 40px;
    border-radius: 44px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 50px;

    display: flex;
    align-items: center;
    gap: 18px;
}

.bottom-section-button button:hover {
    background-color: #034a42;
    transform: translateY(-2px);
}

.bottom-section-button button img {
    width: 15px;
    height: 15px;
}

.bottom-section-button p {
    color: #025951;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 20px;
    width: 15%;
    text-align: center;
}

/* Sección FAQ */
.faq {
    width: 70%;
    margin: auto;
    margin-top: 200px;
    margin-bottom: 100px;
}

.faq .title {
    margin-bottom: 50px;
}

.faq .title h3 {
    color: #707070;
    font-size: 22px;
    font-weight: 300;
}

.faq .title h1 {
    color: #025951;
    font-size: 40px;
    font-weight: 700;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
    justify-items: center;
    align-items: start;
}

.faq-item {
    border: 1px solid #025951;
    border-radius: 15px;
    padding: 25px;
    background-color: #fff;
    transition: all 0.3s ease;
    width: 75%;
}

.faq-item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-item-title h3 {
    color: #025951;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-item-title .circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #F1F2E4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #025951;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    color: #707070;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 20px;
    margin-bottom: 0;
}

/* Sección Contact */
.contact {
    background-color: #fff;
    width: 70%;
    margin: auto;
    margin-top: 200px;
}

.contact .title {
    margin-bottom: 60px;
}

.contact .title h3 {
    color: #707070;
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 10px;
}

.contact .title h1 {
    color: #025951;
    font-size: 40px;
    font-weight: 700;
}


.contact-container form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: flex;
    gap: 30px;
}

.form-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-column label {
    color: #707070;
    font-size: 16px;
    font-weight: 400;
}

.form-column input,
.form-column textarea {
    border: 1px solid #F1F2E4;
    border-radius: 8px;
    padding: 15px;
    font-size: 16px;
    background-color: #fff;
    color: #0D0D0D;
    font-family: "proxima-nova", sans-serif;
}

.form-column input:focus,
.form-column textarea:focus {
    outline: none;
    border-color: #025951;
}

.form-column textarea {
    height: 23px;
    resize: vertical;
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.form-submit button {
    background-color: #025951;
    color: #fff;
    border: none;
    border-radius: 44px;
    padding: 25px 55px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: auto;
}

.form-submit button:hover {
    background-color: #034a42;
    transform: translateY(-2px);
}

.form-submit button img {
    width: 15px;
    height: 15px;
    margin-top: 1px;
}

.more-info {
    display: flex;
    gap: 80px;
    margin: 100px 0;
}

.info-item h3 {
    color: #707070;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
}

.info-item h1 {
    color: #025951;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 50px;
}

/* Sección Legal */
.legal {
    color: #707070;
    font-size: 10px;
    font-weight: 300;
    line-height: 14px;
    width: 70%;
    margin: auto;
    margin-bottom: 25px;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablet Large (1024px y menos) */
@media (max-width: 1024px) {
    /* Navegación */
    nav {
        padding: 20px 40px;
    }
    
    nav ul {
        gap: 40px;
    }
    
    /* Hero */
    .hero .hero-title-container {
        margin-left: 200px;
    }
    
    .hero h1 {
        font-size: 42px;
        line-height: 38px;
    }
    
    .hero .hero-image {
        right: -400px;
    }
    
    /* Types */
    .types {
        gap: 20px;
        padding: 0 20px;
    }
    
    .types .type {
        width: 280px;
        height: 380px;
        padding: 20px 40px;
    }
    
    /* Features */
    .features-container {
        width: 80%;
        gap: 20px;
    }
    
    /* House Detail */
    .details-container {
        padding-left: 10%;
    }
    
    .details-container .left-section {
        width: 35%;
    }
    
    .technical-details {
        width: 80%;
    }
    
    .renders-container {
        width: 80%;
    }
    
    .pricing-container {
        width: 80%;
    }
    
    /* Financial Planning */
    .financial-planning {
        width: 95%;
    }
    
    .financial-planning .bottom-section {
        padding: 50px 150px;
    }
    
    /* FAQ */
    .faq {
        width: 80%;
    }
    
    /* Contact */
    .contact {
        width: 80%;
    }
    
    .more-info {
        gap: 60px;
    }
    
    .legal {
        width: 80%;
    }
}

/* Tablet (768px y menos) */
@media (max-width: 768px) {
    /* Navegación */
    nav {
        padding: 15px 20px;
        flex-wrap: wrap;
    }
    
    nav ul {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
        padding: 20px 0;
        border-top: 1px solid #e0e0e0;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    /* Hamburger Menu */
    .hamburger {
        display: flex;
    }
    
    .nav-contact-btn {
        display: none;
    }
    
    /* Hero */
    .hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 40px 20px;
    }
    
    .hero .hero-title-container {
        margin: 0;
        width: 100%;
    }
    
    .hero h1 {
        font-size: 36px;
        line-height: 32px;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .hero .hero-image {
        position: relative;
        right: auto;
        top: auto;
        margin-top: 30px;
        max-width: 100%;
        height: auto;
    }
    
    /* Types */
    .types {
        flex-direction: column;
        gap: 30px;
        margin-top: 60px;
        padding: 0 20px;
    }
    
    .types .type {
        width: 100%;
        max-width: 400px;
        height: auto;
        padding: 30px;
    }
    
    /* Features */
    .features {
        margin-top: 80px;
        padding: 0 20px;
    }
    
    .features-container {
        width: 100%;
        flex-direction: column;
        gap: 40px;
    }
    
    .features-container .feature {
        width: 100%;
        max-width: 300px;
    }
    
    /* House Detail */
    .house-detail {
        margin-top: 60px;
        padding: 0 20px;
    }
    
    .details-container {
        flex-direction: column;
        padding: 0;
        text-align: center;
    }
    
    .details-container .left-section {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .details-container .left-section h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .details-container .right-section img {
        position: relative;
        right: auto;
        top: auto;
        max-width: 100%;
        height: auto;
    }
    
    .technical-details {
        width: 100%;
        margin-top: 40px;
    }
    
    .technical-details-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .technical-details-item {
        width: 100%;
        border-bottom: 1px solid #CBCBCB;
        padding-bottom: 20px;
    }
    
    /* Renders */
    .renders-container {
        width: 100%;
        flex-direction: column;
        margin-top: 40px;
    }
    
    .renders-container .title {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .preview {
        flex-direction: column;
        gap: 20px;
    }
    
    .preview .main-image-container {
        width: 100%;
        height: 250px;
    }
    
    .preview .mini-images-container {
        flex-direction: row;
        justify-content: center;
    }
    
    .preview .mini-image-container {
        width: 150px;
        height: 100px;
    }
    
    /* Pricing */
    .pricing-container {
        width: 100%;
        margin-top: 40px;
    }
    
    .pricing-container-items {
        flex-direction: column;
        gap: 20px;
    }
    
    .pricing-container .pricing,
    .pricing-container .financing-container {
        width: 100%;
    }
    
    .pricing-container .financing-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    /* Financial Planning */
    .financial-planning {
        width: 100%;
        margin-top: 60px;
        padding: 0 20px;
    }
    
    .financial-planning .top-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        max-height: none;
    }
    
    .financial-planning .top-section .top-section-content {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .financial-planning .top-section .top-section-content h1 {
        font-size: 36px;
    }
    
    .financial-planning .top-section img {
        margin-top: 0;
        max-width: 100%;
        height: auto;
    }
    
    .financial-planning .bottom-section {
        padding: 40px 20px;
        text-align: center;
    }
    
    .financial-planning .bottom-section .steps-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .financial-planning .bottom-section .step {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .financial-planning .bottom-section .step p {
        width: 100%;
    }
    
    .bottom-section-button {
        position: relative !important;
        bottom: auto !important;
        margin-top: 40px;
    }
    
    .bottom-section-button p {
        width: 100% !important;
    }
    
    /* FAQ */
    .faq {
        width: 100%;
        margin-top: 100px;
        padding: 0 20px;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item {
        width: 100%;
    }
    
    /* Contact */
    .contact {
        width: 100%;
        margin-top: 100px;
        padding: 0 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .more-info {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .info-item h1 {
        margin-bottom: 20px;
    }
    
    .legal {
        width: 100%;
        padding: 0 20px;
    }
    
    /* WhatsApp Button */
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Mobile (480px y menos) */
@media (max-width: 480px) {
    /* Navegación */
    nav {
        padding: 10px 15px;
    }
    
    nav img {
        max-width: 120px;
    }
    
    /* Hero */
    .hero {
        padding: 30px 15px;
    }
    
    .hero h1 {
        font-size: 28px;
        line-height: 26px;
    }
    
    .hero button {
        font-size: 16px;
        padding: 18px 20px;
    }
    
    /* Types */
    .types {
        padding: 0 15px;
    }
    
    .types .type {
        padding: 25px 20px;
    }
    
    .types .type .title {
        font-size: 24px;
    }
    
    .types .type .price {
        font-size: 20px;
    }
    
    /* Features */
    .features {
        padding: 0 15px;
    }
    
    .features-container .feature img {
        width: 80px;
        height: 80px;
    }
    
    .features-container .feature h3 {
        font-size: 18px;
    }
    
    /* House Detail */
    .house-detail {
        padding: 0 15px;
    }
    
    .details-container .left-section h1 {
        font-size: 28px;
    }
    
    .details-container .left-section .price {
        font-size: 22px;
    }
    
    .details-container .left-section .home-button {
        font-size: 14px;
        padding: 15px 25px;
    }
    
    /* Technical Details */
    .technical-details .title-technical-details {
        font-size: 16px;
        padding: 8px 16px;
    }
    
    .technical-details-item h5 {
        font-size: 18px;
    }
    
    .technical-details-item p {
        font-size: 14px;
    }
    
    /* Renders */
    .renders-container .title h1 {
        font-size: 24px;
    }
    
    .renders-container .title button {
        font-size: 15px;
        padding: 12px 25px;
    }
    
    .preview .main-image-container {
        height: 200px;
    }
    
    .preview .mini-image-container {
        width: 120px;
        height: 80px;
    }
    
    /* Pricing */
    .pricing-container h1 {
        font-size: 22px;
    }
    
    .pricing-container .pricing h2 {
        font-size: 26px;
    }
    
    .pricing-container .pricing-button {
        font-size: 15px;
        padding: 15px 25px;
    }
    
    /* Financial Planning */
    .financial-planning {
        padding: 0 15px;
    }
    
    .financial-planning .top-section {
        padding: 30px 15px;
    }
    
    .financial-planning .top-section .top-section-content h1 {
        font-size: 28px;
    }
    
    .financial-planning .top-section .top-section-content h3 {
        font-size: 18px;
    }
    
    .financial-planning .bottom-section {
        padding: 30px 15px;
    }
    
    .financial-planning .bottom-section h3 {
        font-size: 20px;
    }
    
    .financial-planning .bottom-section .step p {
        font-size: 14px;
    }
    
    .bottom-section-button button {
        font-size: 15px;
        padding: 18px 30px;
    }
    
    .bottom-section-button p {
        font-size: 16px;
    }
    
    /* FAQ */
    .faq {
        padding: 0 15px;
    }
    
    .faq .title h1 {
        font-size: 32px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-item-title h3 {
        font-size: 18px;
    }
    
    .faq-item-title .circle {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
    
    /* Contact */
    .contact {
        padding: 0 15px;
    }
    
    .contact .title h1 {
        font-size: 32px;
    }
    
    .form-column input,
    .form-column textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .form-submit button {
        font-size: 16px;
        padding: 20px 40px;
    }
    
    .info-item h1 {
        font-size: 22px;
    }
    
    .info-item h3 {
        font-size: 16px;
    }
    
    /* WhatsApp Button */
    .whatsapp-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Mobile Small (360px y menos) */
@media (max-width: 360px) {
    /* Hero */
    .hero h1 {
        font-size: 24px;
        line-height: 22px;
    }
    
    .hero button {
        font-size: 14px;
        padding: 15px 18px;
    }
    
    /* Types */
    .types .type .title {
        font-size: 20px;
    }
    
    .types .type .price {
        font-size: 18px;
    }
    
    /* Features */
    .features-container .feature img {
        width: 70px;
        height: 70px;
    }
    
    .features-container .feature h3 {
        font-size: 16px;
    }
    
    /* House Detail */
    .details-container .left-section h1 {
        font-size: 24px;
    }
    
    .details-container .left-section .price {
        font-size: 20px;
    }
    
    /* Financial Planning */
    .financial-planning .top-section .top-section-content h1 {
        font-size: 24px;
    }
    
    /* FAQ */
    .faq .title h1 {
        font-size: 28px;
    }
    
    /* Contact */
    .contact .title h1 {
        font-size: 28px;
    }
}