:root {
    --bg: #ffffff;
    --text: #111111;
    --muted: #666666;
    --border: #e5e5e5;
    --accent: #1a1a1a;
    --max-width: 1100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    background-color: var(--bg) !important;
    color: var(--text) !important;
    line-height: 1.6 !important;
}

main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 100px 20px;

}

section {
    margin-bottom: 100px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 25px;
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

p {
    color: var(--muted);
    max-width: 700px;
    margin-bottom: 20px;
}

ul, ol {
    margin-left: 20px;
    color: var(--muted);
}

li {
    margin-bottom: 8px;
}

/* Hero */
#hero {
    text-align: left;
    margin-bottom: 0px;
    margin-top: 50px;
}
#hero img{
    position: absolute;
    width: 300px;
    right: 50px;
    top: 180px;
    filter: opacity(.8);
    animation: float 4s ease-in-out infinite;
    transform: translateY(10px);
}

/* Planes */
#plans {
    margin-top: 40px;
}

#plans .plan {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 12px;
    transition: 0.2s ease;
    position: relative;
    background: #fafafa;
}


#plans {
    display: grid;
    gap: 30px;
    margin-bottom: 200px;
}

#aclaraciones{
    display: flex;
}
#aclaraciones span{
    padding: 50px;
    margin: 10px;
    border: 5px solid #fafafa;
    border-radius: 12px;
}

.btn-ask{
    cursor: pointer;
    position: absolute;
    width: 60%;
    text-align: center;
    align-self: center;
    border: 1px solid var(--border);
    bottom: -50px;
    padding: 5px;
    background-color: #fafafa;
    border-radius: 50px;
    border-color: 0;
    color: #cccccc;
    transition: all .4s ease;
}



@media (min-width: 900px) {
    #plans {
        grid-template-columns: repeat(3, 1fr);
    }
    #plans .plan:hover {
    border-color: #cccccc;
    transform: translateY(-3px);
    }

    
    .plan:hover > .btn-ask{
    border-color: #f5f5f5;
    background-color: #111111;
    color: #ffffff;
    }
   

}
@media (max-width: 900px) {
    #hero img{
        display: none;
    }
    #plans{
        gap: 100px;
    }
    
    .btn-ask{
            border-color: #f5f5f5;
            background-color: #111111;
            color: #ffffff;
        }
         #aclaraciones{
    flex-direction: column;
}

}
/* Botón */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: 0.2s ease;
}

.btn:hover {
    opacity: 0.85;
}


/* CTA */
#cta {
    border-top: 1px solid var(--border);
    padding-top: 60px;
    justify-self: center;
    text-align: center;
}


@keyframes float {
    0% {
        transform: translateY(10px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(10px);
    }
}