* {
    --primary-color: #4092F8;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #27272a;
    line-height: 1.6;
    background: #fff7ed;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: #ffedd5;
    background-image: 
        radial-gradient(at 0% 0%, hsl(219, 86%, 57%) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(239, 90%, 65%, 0.2) 0px, transparent 50%),
        linear-gradient(to bottom, #fff7ed 0%, #ffedd5 100%);
    position: relative;
    padding-bottom: 80px;
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.8;
    animation: bounce 2s infinite;
    cursor: pointer;
    text-decoration: none;
}

.scroll-hint svg {
    width: 24px;
    height: 24px;
}

.arrival-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 99px;
    margin-bottom: 32px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(64, 146, 248, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #4b5563;
    animation: float 6s ease-in-out infinite;
}

.arrival-pill .dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    position: relative;
}

.arrival-pill .dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background-color: #22c55e;
    opacity: 0.4;
    animation: pulse 2s infinite;
}

.arrival-pill b {
    color: #111;
    font-weight: 700;
}

h1 {
    font-size: 6vw;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.05;
    letter-spacing: -2px;
}

h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.5rem;
    color: #666;
    max-width: 600px;
    font-weight: 400;
}

.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px;
}

h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -1px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 120px;
}

.item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(64, 146, 248, 0.1);
    border-color: #4092F8;
}

.item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #000;
}

.item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5;
}

form#contacto {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

form label {
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
    color: #4b5563;
    font-size: 0.95rem;
}

form input, form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-top: 8px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
}

form input:focus, form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(64, 146, 248, 0.1);
}

form textarea {
    min-height: 120px;
    resize: vertical;
}

form button[type="submit"] {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
}

form button[type="submit"]:hover {
    background: #3272c6;
    box-shadow: 0 10px 20px rgba(64, 146, 248, 0.2);
}

.center {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background: #fff;
    transform: translateY(-2px);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    70% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

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

footer {
    background: #111827;
    color: #9ca3af;
    padding: 60px 20px 40px;
    margin-top: 80px;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
        letter-spacing: -1px;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .grid {
        grid-template-columns: 1fr;
    }
    .center {
        flex-direction: column;
        width: 100%;
    }
    a.btn {
        width: 100%;
    }
    .footer-content {
        text-align: center;
    }
}