* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 50%, #5a7fc7 100%);
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #5a7fc7;
}

.logo a {
    text-decoration: none;
    display: block;
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    font-size: 16px;
}

.nav-links a {
    text-decoration: none;
    color: #5a7fc7;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #5a7fc7;
    text-decoration: underline;
    text-underline-offset: 8px;
}

.cta-button {
    background: #5a7fc7;
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background: #4a6bb3;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(90, 127, 199, 0.3);
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 2rem 0;
    align-items: center;
}

.content-left {
    padding-right: 2rem;
}

.main-title {
    font-size: 3rem;
    color: #5a7fc7;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.parrafo {
    color: #666; 
    font-size: 15px; 
    margin-bottom: 2rem; 
    line-height: 1.6; 
    font-style: italic;
}

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5a7fc7;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-button {
    background: #5a7fc7;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.fecha{
    color: #5a7fc7;
}

.submit-button:hover {
    background: #4a6bb3;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(90, 127, 199, 0.3);
}

.submit-link {
    background: #5a7fc7;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    text-decoration: none;
}

.submit-link:hover {
    background: #4a6bb3;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(90, 127, 199, 0.3);
}

/* Right Content - Calendar Illustration */
.content-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-right1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendar-illustration {
    position: relative;
    /* width: 300px;
    height: 250px; 
    background-color: #2c3e50;*/
}

.calendar-illustration1 {
    position: relative;
    width: 300px;
    height: 250px;
}

.calendar-illustration img {
    height: 500px;
    width: auto;
    object-fit: contain;
    display: block;
}

.calendar {
    background: #2c3e50;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transform: rotate(-5deg);
}

.calendar-header {
    background: white;
    height: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    position: relative;
}

.calendar-header::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 20px;
    width: 8px;
    height: 8px;
    background: #5a7fc7;
    border-radius: 50%;
}

.calendar-header::after {
    content: "";
    position: absolute;
    top: -8px;
    right: 20px;
    width: 8px;
    height: 8px;
    background: #5a7fc7;
    border-radius: 50%;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.calendar-day {
    width: 25px;
    height: 25px;
    background: #5a7fc7;
    border-radius: 3px;
    opacity: 0.8;
}

.calendar-day:nth-child(3n) {
    background: #4a6bb3;
}

.calendar-day:nth-child(5n) {
    background: #6b8dd6;
}

.floating-elements {
    position: absolute;
    top: -20px;
    right: 80px;
}

.floating-elements1 {
    position: absolute;
    top: -20px;
    right: -30px;
}

.circle {
    width: 60px;
    height: 60px;
    background: rgba(90, 127, 199, 0.6);
    border-radius: 50%;
    position: absolute;
}

.circle:nth-child(2) {
    width: 40px;
    height: 40px;
    background: rgba(90, 127, 199, 0.4);
    top: 80px;
    right: 20px;
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 0;
    margin-top: 4rem;
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #5a7fc7;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #5a7fc7;
}

.footer-logo::before {
    content: "✈️";
    margin-right: 8px;
    font-size: 1.2rem;
}

.footer-divider {
    border: none;
    border-top: 3px solid #5a7fc7;
    margin: 2rem auto;
    width: 90%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.social-icons a {
    color: #5a7fc7;
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #4a6bb3;
    transform: scale(1.2);
}

.footer-copy {
    text-align: center;
    font-size: 0.9rem;
    color: #5a7fc7;
    line-height: 1.6;
}

.footer-copy a {
    color: #5a7fc7;
    text-decoration: none;
    font-weight: 600;
}

.footer-copy a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .content-left {
        padding-right: 0;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .calendar-illustration {
        width: 250px;
        height: 200px;
    }

    .content-right {
        display: none !important;
    }

    .content-right1 {
        display: none !important;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
}

.calendar {
    animation: float 3s ease-in-out infinite;
}

.circle {
    animation: float 4s ease-in-out infinite reverse;
}

/* Input Animations */
.form-group input:focus,
.form-group textarea:focus {
    transform: scale(1.02);
}