/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gotham', sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.6;
    color: #1E293B;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.03em;
}

.container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Header */
.header {
    background: #F5F5F5;
    color: #1E293B;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 50;
    height: 168px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.logo-col {
    display: flex;
    align-items: center;
    gap: 12px;
}

.col-number {
    font-weight: 600;
    font-size: 14px;
    color: #1b2636;
    margin-top: 45px;
    /* Ajusta este valor para alinear verticalmente con el logo */
    letter-spacing: 0.5px;
}

.logo-img {
    height: 145px;
    width: auto;
    margin-top: -10px;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
    margin-top: 40px;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: #1E293B;
    text-decoration: none;
    font-size: 23px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #6b7280;
}

.header-contact {
    display: none;
    align-items: center;
    gap: 1rem;
    margin-top: 40px;
}

@media (min-width: 1024px) {
    .header-contact {
        display: flex;
    }
}

.phone-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #1E293B;
    width: 240px;
    height: 45px;
    border-radius: 4px;
    justify-content: center;
    position: relative;
}

.phone-contact::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 12px solid #1b2636;
}

.phone-icon {
    width: 1rem;
    height: 1rem;
    color: #fff;
    font-size: 1rem;
}

.contact-label-phone {
    font-weight: bold;
    color: #1b2636;
    /* O el color que prefieras */
    font-size: 15px;
    margin-bottom: 5px;
    margin-left: 5px;
    letter-spacing: 1px;
}

.fa-solid.fa-phone.phone-icon {
    color: #076C78;
    font-size: 24px;
    margin-right: 5px;
    margin-top: -5px;
}

.phone-contact span {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.3px;
}

.banda-colores {
    width: 100%;
    display: flex;
}

.banda-color {
    width: 25%;
    height: 10px;
}

.color-1 {
    background: #151A34;
}

.color-2 {
    background: #3E6C77;
}

.color-3 {
    background: #87A349;
}

.color-4 {
    background: #076C78;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 1rem;
    height: 1rem;
    color: #1E293B;
    transition: color 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.social-icon:hover {
    color: #6b7280;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: block;
    color: #1E293B;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: block;
                border: none;
    }
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 100;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 0;
}

.mobile-logo {
    padding: 1rem;
}

.mobile-logo img {
    height: 6rem;
    width: auto;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    color: #1E293B;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-align: center;
    border-bottom: 1px solid #C7C7C7;
    padding: 0.5rem;
    line-height: 45px;
}

.mobile-contact {
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 1.5rem;
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mobile-phone span {
    font-size: 0.875rem;
}

.mobile-social {
    display: flex;
    gap: 1rem;
}

.mobile-social .social-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Search Bar */
.search-bar {
    background: #F5F5F5;
    padding: 1.5rem 0;
}

.search-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .search-content {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.search-btn {
    background: transparent;
    border: 1px solid #1E293B;
    color: #1E293B;
    padding: 0.8rem 3rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important; */
    font-family: 'Gotham', sans-serif;
}

.search-btn.active {
    background: #1E293B;
    color: #fff;
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.search-btn.active:hover {
    background: #f3f4f6;
}

.search-select {
    width: 14rem;
    background: transparent;
    border: 1px solid #1E293B;
    color: #1E293B;
    padding: 0.5rem;
    font-size: 1rem;
    height: 48px;
    font-weight: 500;
    font-family: 'Gotham', sans-serif;
}

.search-input {
    flex: 1;
    min-width: 16rem;
    background: transparent;
    border: 1px solid #1E293B;
    color: #1E293B;
    padding: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    height: 48px;
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important; */
    font-family: 'Gotham', sans-serif;
}

.search-input::placeholder {
    color: #1E293B;
}

.search-input-code {
    width: 13rem;
    background: transparent;
    border: 1px solid #1E293B;
    color: #1E293B;
    padding: 0.5rem;
    font-size: 1rem;
    height: 48px;
    font-weight: 500;
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important; */
    font-family: 'Gotham', sans-serif;
}

.search-input-code::placeholder {
    color: #1E293B;
    font-weight: 500;
}

.search-submit {
    background: #1E293B;
    color: #fff;
    border: none;
    padding: 0.5rem 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    height: 48px;
    font-weight: 500;
}

.search-submit:hover {
    background: #f3f4f6;
}

.search-icon {
    width: 1rem;
    height: 1rem;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(85vh - 135px);
    background: #1E293B;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: #0000000a;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-text {
    max-width: 64rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 6rem;
    font-weight: 100;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
    line-height: 1;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 7.5rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 7.5rem;
    }
}

.hero-title-bold {
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #fff;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 1.5rem;
    height: 1.5rem;
}

@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40%,
    43% {
        transform: translateX(-50%) translateY(-30px);
    }

    70% {
        transform: translateX(-50%) translateY(-15px);
    }

    90% {
        transform: translateX(-50%) translateY(-4px);
    }
}

/* Featured Properties */
.featured-properties {
    padding: 6rem 0;
    background: #E0E0E0;
}

.section-header {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 400;
    color: #1E293B;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #6b7280;
    margin-bottom: 2rem;
}

.section-line {
    height: 2px;
    width: 6rem;
    background: #1E293B;
}

.properties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .properties-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.property-card {
    transition: transform 0.3s ease;
}

.property-content {
    background: #f9fafb;
    padding: 2rem;
    transition: background-color 0.3s ease;
}

.property-content:hover {
    background: #f3f4f6;
}

.property-image {
    position: relative;
    margin-bottom: 1.5rem;
}

.property-image img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.property-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #1E293B;
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.property-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.property-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1E293B;
    margin-bottom: 0.25rem;
}

.property-address {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 400;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 400;
    color: #1E293B;
}

.property-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.link-property {
    text-decoration: none;
}

.property-details span {
    font-size: 0.875rem;
    color: #6b7280;
}

.property-details span:last-child {
    font-weight: 500;
}

.section-cta {
    display: flex;
    justify-content: center;
}

.cta-button {
    border: 1px solid #1E293B;
    color: #1E293B;
    background: transparent;
    padding: 0.75rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    /* letter-spacing: 0.025em; */
    font-weight: 500;
    font-family: 'Gotham', sans-serif;
}

.cta-button:hover {
    background: #1E293B;
    color: white;
}

.arrow-icon {
    width: 1rem;
    height: 1rem;
    font-size: 1rem;
}

/* Developments Section */
.developments {
    padding: 6rem 0;
    background: #fff;
}

.developments-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .developments-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.developments-intro {
    font-size: 1.25rem;
    color: #6b7280;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.development-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.development-card {
    background: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.development-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.development-card {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .development-card {
        grid-template-columns: 1fr 2fr;
    }
}

.development-image {
    position: relative;
}

.development-image img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

@media (min-width: 768px) {
    .development-image img {
        height: 250px;
    }
}

.development-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
}

.badge {
    background: #1E293B;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge.secondary {
    background: #6b7280;
}

.development-title-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: white;
    font-size: 1.125rem;
    font-weight: 500;
}

.development-info {
    padding: 1.5rem;
}

.development-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.development-name {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1E293B;
    margin-bottom: 0.5rem;
}

.development-location {
    display: flex;
    align-items: center;
    color: #6b7280;
    margin-bottom: 1rem;
}

.location-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.development-location span {
    font-size: 0.875rem;
}

.premium-badge {
    border: 1px solid #fbbf24;
    color: #d97706;
    background: #fef3c7;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

.development-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    color: #6b7280;
}

.calendar-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.detail-item span {
    font-size: 0.875rem;
}

.development-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.price-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 300;
    color: #1E293B;
}

.detail-button {
    background: #1E293B;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.detail-button:hover {
    background: #2d3c50;
}

.developments-cta {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.developments-right {
    position: relative;
}

.sticky-content {
    position: sticky;
    top: 6rem;
}

.large-text {
    font-size: 8rem;
    font-weight: 100;
    color: #1E293B;
    line-height: 1;
    margin-bottom: 2rem;
}

.large-text .bold {
    font-weight: 500;
}

.description {
    color: #6b7280;
    max-width: 28rem;
}

/* Team Section */
.team {
    padding: 8rem 0;
    background: #E0E0E0;
    overflow: hidden;
    position: relative;
}

.team-bg-circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: #1E293B;
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(8rem, -8rem);
}

.team-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .team-content {
        grid-template-columns: 7fr 5fr;
    }
}

.team-left {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.team-bg-text {
    font-size: 12rem;
    font-weight: 100;
    color: #1E293B;
    opacity: 0.1;
    position: absolute;
    top: -6rem;
    left: -2rem;
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .team-bg-text {
        font-size: 13rem;
    }
}

.team-main-content {
    position: relative;
    z-index: 10;
    padding-top: 4rem;
}

.team-title {
    font-size: 4rem;
    font-weight: 100;
    color: #1E293B;
    line-height: 1;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .team-title {
        font-size: 6rem;
    }
}

@media (min-width: 1024px) {
    .team-title {
        font-size: 5rem;
    }
}

.team-title .bold {
    font-weight: 500;
}

.team-title .light {
    font-size: 2rem;
    font-weight: 300;
}

@media (min-width: 640px) {
    .team-title .light {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .team-title .light {
        font-size: 5rem;
    }
}

.team-line {
    height: 2px;
    width: 4rem;
    background: #1E293B;
    margin-bottom: 2rem;
}

.team-description {
    font-size: 1.3rem;
    color: #6b7280;
    font-weight: 300;
    line-height: 1.6;
    max-width: 32rem;
    margin-bottom: 2rem;
}

.team-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

@media (min-width: 640px) {
    .team-cta {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
}

.team-button {
    background: #1E293B;
    color: white;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.team-button:hover {
    background: #2d3c50;
}

.team-divider {
    height: 1px;
    width: 4rem;
    background: #1E293B;
}

.team-email {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.team-right {
    position: relative;
}

.team-image-container {
    position: relative;
}

.team-image-frame {
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: 100%;
    height: 100%;
    border: 2px solid #1E293B;
    opacity: 0.2;
}

.team-image-wrapper {
    position: relative;
    background: white;
    padding: 1rem;
}

.team-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.team-image:hover {
    filter: grayscale(0%);
}

.team-stats {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: #1E293B;
    color: white;
    padding: 2rem;
    max-width: 12rem;
}

.stats-number {
    font-size: 2.25rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
}

.stats-text {
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
}

.contact-redes{
    display: flex;
    gap: 1rem;
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.contact-item {
    text-align: center;
}

@media (min-width: 768px) {
    .contact-item {
        text-align: left;
    }
}

.contact-address {
    font-size: 1.875rem;
    font-weight: 100;
    color: #1E293B;
    line-height: 1.2;
    margin-bottom: 0.25rem;
    text-align: center;
}

.address-number {
    font-size: 1.25rem;
    font-weight: 500;
}

.contact-details {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 0.5rem;
}

.contact-line {
    width: 3rem;
    height: 1px;
    background: #076C78;
    margin-top: 0.75rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .contact-line {
        margin-left: 0;
    }
}

.contact-phone-group {
    margin-bottom: 2rem;
}

.contact-phone-group:last-child {
    margin-bottom: 0;
}

.contact-phone {
    font-size: 1.875rem;
    font-weight: 800;
    color: #076C78;
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-phone.whatsapp {
    color: #87A349;
}

.whatsapp-group .contact-phone-line {
    background: #87A349;
}

.contact-phone:hover {
    opacity: 0.8;
}

.contact .contact-title{
    font-size: 45px;
    color: #3E6C77;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.banda-contacto{
    width: 90%;
    height: 7px;
    border: none;
    background-image: url(../img/banners/banda_repeat.png);
    background-size: contain;
    background-repeat: repeat-x;
    margin: auto;
    margin-bottom: 10px;
}
.flecha {
    width: 28px;
    height: 10px;
    border: none;
    background-image: url(../img/banners/flecha.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin: auto;
    margin-bottom: 50px;
}
.contact-phone-line {
    width: 100%;
    height: 2px;
    background: #076C78;
    margin-bottom: 0.75rem;
}

.contact-label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
}

.contact-email {
    font-size: 1.125rem;
    font-weight: 300;
    color: #076C78;
}

.contact-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #076C78;
    border-radius: 50%;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .contact-dot {
        margin-left: 0;
    }
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #f3f4f6, white);
}

.footer .container {
    padding-bottom: 3rem;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 150px;
    width: auto;
    margin-top: -11px;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}
.footer-social span{
    font-size: 20px;
    letter-spacing: 1px;
    color: #1E293B;
    font-weight: 700;
}

.social-link {
    background: #1E293B;
    color: white;
    padding: 0.75rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    background: #2d3c50;
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.social-link i {
    font-size: 1.25rem;
}

.footer-bottom {
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.banda-gris-ft{
    width: 100%;
    height: 29px;
    margin: auto;
    background: #E0E0E0;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-nav {
        justify-content: flex-start;
        gap: 2rem;
        margin-bottom: 0;
    }
}

.footer-nav a {
    color: #1E293B;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-nav a:hover {
    color: #6b7280;
}

.footer-copyright {
    font-size: 1rem;
    color: #6b7280;
}

.footer-accent {
    height: 0.5rem;
    background: #1E293B;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
}

.whatsapp-btn {
    background: #10b981;
    color: white;
    border: none;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn:hover {
    background: #059669;
}

.whatsapp-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .team-title {
        font-size: 3rem;
    }

    .team-title .light {
        font-size: 1.5rem;
    }

    .large-text {
        font-size: 4rem;
    }

    .contact-address {
        font-size: 1.5rem;
    }

    .contact-phone {
        font-size: 1.5rem;
    }
}

.mobile-menu-close-btn {
    background: none;
    border: none;
    color: #1E293B;
    font-size: 2rem;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    cursor: pointer;
    z-index: 101;
}

.mobile-contact {
    border-top: 1px solid #e5e7eb;
    margin-top: 2rem;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.1rem;
    color: #1E293B;
    font-weight: 500;
}

.mobile-phone .phone-icon {
    font-size: 1.2rem;
    color: #1E293B;
}

.mobile-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.mobile-social .social-icon {
    font-size: 1.4rem;
    color: #1E293B;
    transition: color 0.2s;
    cursor: pointer;
}

.mobile-social .social-icon:hover {
    color: #6b7280;
}

.search-select option {
    background: #1E293B !important;
    color: white !important;
}