/* Fuente moderna y reset básico */
body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background-color: #0a0a0a;
    color: #f5f5f5;
}

/* Encabezado */
header {
    background-color: #111;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #2ecc71;
}

.site-footer {
    background-color: #111;
    border-top: 1px solid #2ecc71;
    color: #f5f5f5;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.site-footer a {
    color: #f5f5f5;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.site-footer a:hover {
    color: #2ecc71;
}

@media (max-width: 600px) {
    .site-footer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-right a {
        margin-left: 10px;
        margin-right: 10px;
    }
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2ecc71;
}

.logo a {
    font-size: 28px;
    font-weight: 700;
    color: #2ecc71;
    text-decoration: none;
}

nav a {
    color: #f5f5f5;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #2ecc71;
}


.hero {
    text-align: center;
    padding: 120px 20px 100px;
    background: linear-gradient(to bottom, #0a0a0a 0%, #111 100%);
}

.hero h1 {
    font-size: 60px;
    color: #2ecc71;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    color: #dcdcdc;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero button {
    background-color: #2ecc71;
    color: #000;
    border: none;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.hero button:hover {
    background-color: #27ae60;
    transform: scale(1.06);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 70px 50px;
    background-color: #111;
}

.feature {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 12px rgba(48, 68, 56, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(47, 66, 55, 0.2);
}

.feature img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.1);
}

.feature h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 22px;
}

.feature p {
    color: #cccccc;
    font-size: 15px;
}

.pricing {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #0a0a0a 0%, #111 100%);
    text-align: center;
}

.pricing h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #27ae60;
}

label[for="location-select"] {
    font-size: 18px;
    margin-right: 12px;
    color: #cccccc;
}

#location-select {
    padding: 10px 18px;
    border-radius: 5px;
    border: 1px solid #ffffff;
    background-color: #1c1c1c;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 50px;
    transition: all 0.3s ease;
}

#location-select:focus {
    outline: none;
    border-color: #ffffff;
}

.plans-container {
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.plans {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    animation: fadeIn 0.5s ease-in-out;
}

.plans.active {
    display: flex;
}

.plan {
    background-color: #161616;
    border: 1px solid #212523;
    border-radius: 16px;
    padding: 30px 25px;
    width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
    transform: scale(1.05);
}

.plan h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2ecc71;
}

.plan ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    color: #dddddd;
    font-size: 14px;
    text-align: left;
}

.plan ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.plan ul li::before {
    content: "✔";
    color: #2ecc71;
    position: absolute;
    left: 0;
    font-size: 14px;
}

/* Precio */
.plan .price {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2ecc71;
}

.plan button {
    background-color: #2ecc71;
    color: #000;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 15px;
}

.plan button:hover {
    background-color: #27ae60;
}

/* Animación suave */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
