@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

/* Variables */
:root {
    --accent-color: #F8DC63; /* Puedes cambiar este color según tus preferencias */
}

/* Reset y Estilos Básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: linear-gradient(to bottom right, #C33C54, #CA5369, #CF6377 );
    /*background: linear-gradient(to bottom right, #5a75e3, #6374f1, #76d7f7);*/
    color: white;
    cursor: none;
}

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

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    left: 0;
    right: 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.navbar-links {
    display: flex;
}

.navbar-links a {
    color: white;
    text-decoration: none;
    margin-left: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
}

.navbar-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Página de Contacto */
.contact-page {
    padding-top: 80px;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-form,
.contact-info {
    flex: 2;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
}

.contact-form h2,
.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 0.375rem;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

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

.submit-button {
    background-color: white;
    color: #9c27b0;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #f3e5f5;
}

.contact-info ul {
    list-style-type: none;
}

.contact-info li {
    margin-bottom: 1rem;
}

.contact-info strong {
    display: block;
    margin-bottom: 0.25rem;
}

.social-media {
    margin-top: 2rem;
}

.social-media h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.social-link {
    display: inline-block;
    margin-right: 1rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: #f3e5f5;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 1s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 1s ease-out;
}

/* Footer */
.footer {
    background-color: rgba(211, 203, 203, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-logo img {
    width: 100px;
    height: auto;
}

.footer-text {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Estilos Responsivos */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .page-title {
        padding-top: 4rem;
        font-size: 2.5rem;
    }

    .navbar-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-links {
        margin-top: 1rem;
    }

    .navbar-links a {
        margin-left: 0;
        margin-right: 1rem;
    }

    .footer-text {
        font-size: 0.875rem;
    }

    .footer-logo img {
        width: 80px;
    }
    #cursor, #cursor-border {
        display: none;
    }
}

/* Cursor Personalizado */
#cursor {
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

#cursor-border {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.2s ease-out;
}

/* Posicionamiento del Corazón en la Página de Contacto */
.contact-info {
    position: relative;
}

.heart-container {
    position: absolute;
    bottom: 70px; /* Ajusta según sea necesario */
    left: 50%;
    transform: translateX(-50%);
}
