* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #7ba05b;
    color: white;
    padding: 15px 0;
    /*position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;*/
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.location, .contact-email {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.location i, .contact-email i {
    font-size: 16px;
}

/* Logo Section */
.logo-section {
    background-color: #f8f8f8;
    padding: 50px 0 40px;
    text-align: center;
    /*position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;*/
}

.logo h1 {
    font-size: 24px;
    font-weight: bold;
    color: #8b4513;
    letter-spacing: 1px;
}

.del-cerro {
    color: #8b4513;
    font-size: 28px;
    font-weight: bold;
}

.subtitle {
    font-size: 14px;
    color: #8b4513;
    font-weight: normal;
    letter-spacing: 2px;
}

/* Hero Section */
.hero-section {
    background-color: #8b4513;
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    /*top:200px;*/
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 40px;
}

/* New Lots Section */
.new-lots-section {
    background-color: #f8f8f8;
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.pricing-info {
    margin-bottom: 40px;
}

.price-from, .installments {
    font-size: 20px;
    margin: 10px 0;
    color: #333;
}

.price-dots {
    color: #7ba05b;
    font-weight: bold;
}

/* Plan Section */
.plan-section {
    background-color: #d3d3d3;
    padding: 80px 0;
    text-align: center;
}

.plan-title {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}

.plan-placeholder {
    background-color: #bbb;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    border-radius: 10px;
}

.plan-content {
    text-align: center;
    color: #666;
}

.plan-content i {
    font-size: 48px;
    margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
    background-color: #f8f8f8;
    padding: 80px 0;
    text-align: center;
}

.contact-text {
    font-size: 20px;
    margin-bottom: 30px;
    color: #333;
}

.phone-dots {
    color: #7ba05b;
    font-weight: bold;
}

.whatsapp-btn {
    background-color: #25d366;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}
.plano-btn {
    background-color: rgb(139, 69, 19);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.plano-btn:hover {
    background-color: black;
    transform: translateY(-2px);
}

/* Aerial Section */
.aerial-section {
    position: relative;
}

.aerial-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.aerial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.plano img{
    width: 100%;
}

/* Footer */
.footer {
    background-color: #7ba05b;
    padding: 30px 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: white;
    color: #7ba05b;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Scroll Indicators */
.scroll-indicator {
    margin-top: 30px;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 24px;
    color: #7ba05b;
}

.hero-section .scroll-indicator i {
    color: white;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}
.plano-btn-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: rgb(139, 69, 19);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}
.plano-btn-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}
.whatsapp-float i {
    font-size: 28px;
    color: white;
}
.plano-btn-float i {
    font-size: 28px;
    color: white;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .logo-section {
       /* padding: 120px 0 40px;
        position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;*/
    }
    .logo img{
        width: 80%;
    }
    .logo h1 {
        font-size: 20px;
    }
    .logo img{
        width: 80%;
    }
    
    .del-cerro {
        font-size: 24px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .plan-title {
        font-size: 36px;
    }
    
    .contact-text {
        font-size: 18px;
    }
    
    .whatsapp-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
    .plano-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .plan-title {
        font-size: 28px;
    }
    
    .price-from, .installments {
        font-size: 18px;
    }
    
    .contact-text {
        font-size: 16px;
    }
}