body {
    background: #0A1F3C;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.hero-section {
    min-height: 80vh;
    background: radial-gradient(circle at 50% 70%, #00e0db20 0%, #0A1F3C 100%);
    width: 100vw;
    max-width: 100%;
    overflow-x: hidden;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    margin-top: 0;
}

#dynamicText {
    transition: color 0.5s;
}

/* Titles and Logos */
.featured-title {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 4px 24px rgba(0, 224, 219, 0.08);
}

.featured-logo {
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px #00e0db);
    opacity: 0.95;
}

/* Cards and Icons */
.residency-card {
    background: rgba(0, 224, 219, 0.08);
    border-radius: 18px;
    box-shadow: 0 0 24px rgba(0, 224, 219, 0.1), 0 2px 8px rgba(0, 0, 0, 0.12);
    border: 1.5px solid #00e0db;
}

.residency-list li {
    color: #ffffff;
    font-size: 1.08rem;
}

.residency-icon {
    box-shadow: 0 2px 16px rgba(0, 224, 219, 0.1);
}

/* Junta Section */
#junta {
    background: radial-gradient(circle at top center, #00e0db20, #0A1F3C 90%);
    padding: 80px 0;
    text-align: center;
}

#junta h1 {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

#junta p {
    color: #e0f7fa;
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

#junta .btn-outline-info {
    border: 1px solid #00e0db;
    color: #00e0db;
    padding: 10px 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#junta .btn-outline-info:hover {
    background-color: #00e0db;
    color: #0A1F3C;
}

#junta img {
    margin-top: 40px;
    max-width: 60%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 224, 219, 0.2);
}

/* Junta Section Image + Text */
.junta-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0A1F3C;
    color: white;
    padding: 60px 80px;
}

.junta-section-text {
    max-width: 50%;
}

.junta-section-text h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #00e0db;
}

.junta-section-text p {
    font-size: 16px;
    line-height: 1.6;
}

.junta-section-image img {
    width: 500px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .junta-section {
        flex-direction: column;
        text-align: center;
    }

    .junta-section-text,
    .junta-section-image img {
        max-width: 100%;
    }

    .junta-section-image img {
        margin-top: 30px;
        width: 100%;
    }
}

/* Steps */
.steps-heading {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 60px;
    line-height: 1.4;
    text-align: center !important;
    color: #00e0db;
    width: 100%;
}

.steps {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 55px;
}

.circle {
    background-color: #00e0db;
    color: #0A1F3C;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    position: relative;
    flex-shrink: 0;
}

.circle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -55px;
    width: 2px;
    height: 55px;
    background: repeating-linear-gradient(
        to bottom,
        #00e0db,
        #00e0db 5px,
        transparent 5px,
        transparent 10px
    );
    transform: translateX(-50%);
    z-index: -1;
}

.step:last-child .circle::after {
    display: none;
}

.text {
    text-align: left;
    font-size: 20px;
}

.note {
    margin-top: 60px;
    font-size: 16px;
    color: #a7d8d8;
    text-align: center;
}

/* Info Section */
.info-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.info-section img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
}

.info-text {
    flex: 1;
    padding: 0 30px;
    max-width: 650px;
}

.info-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #00e0db;
}

.info-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #e0f7fa;
}

.info-text .btn-consult {
    padding: 12px 24px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #00e0db;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: -70px;
}

.info-text .btn-consult:hover {
    background-color: #00e0db;
    color: #0A1F3C;
}
