:root {
    --primary-color: #ff6b9d;
    --secondary-color: #4ecdc4;
    --accent-color: #ffd93d;
    --daisy-white: #ffffff;
    --daisy-yellow: #ffeb3b;
    --daisy-green: #4caf50;
    --dark-bg: #1a1a2e;
    --light-bg: #16213e;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--light-bg) 100%);
    color: white;
    overflow-x: hidden;
}

/* Navbar personalizada */
.navbar-custom {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    background: rgba(26, 26, 46, 0.98);
    box-shadow: 0 2px 20px rgba(255, 107, 157, 0.3);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.3rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    transition: all 0.3s ease;
    margin: 0 5px;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(22, 33, 62, 0.8));
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.4;
}

/* Círculos con imágenes de Hafsanur */
.hero-image-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-circle-image {
    position: absolute;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid rgba(255, 235, 59, 0.3);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
    opacity: 0.7;
    transition: all 0.3s ease;
    backdrop-filter: blur(1px);
}

.hero-circle-image:hover {
    opacity: 0.9;
    border-color: rgba(255, 235, 59, 0.6);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
    transform: scale(1.05);
}

/* Círculo 1 - Top Left */
.hero-circle-1 {
    top: 15%;
    left: 8%;
    width: 200px;
    height: 200px;
    background-image: url('imagenes/image7.jpeg');
    animation: heroFloat1 8s ease-in-out infinite;
}

/* Círculo 2 - Top Right */
.hero-circle-2 {
    top: 20%;
    right: 12%;
    width: 220px;
    height: 220px;
    background-image: url('imagenes/image15.jpeg');
    animation: heroFloat2 10s ease-in-out infinite;
    animation-delay: 1s;
}

/* Círculo 3 - Middle Left */
.hero-circle-3 {
    top: 55%;
    left: 5%;
    width: 170px;
    height: 170px;
    background-image: url('imagenes/image23.jpeg');
    animation: heroFloat3 7s ease-in-out infinite;
    animation-delay: 2s;
}

/* Círculo 4 - Bottom Right */
.hero-circle-4 {
    bottom: 25%;
    right: 8%;
    width: 210px;
    height: 210px;
    background-image: url('imagenes/image31.jpeg');
    animation: heroFloat4 9s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Círculo 5 - Bottom Center */
.hero-circle-5 {
    bottom: 15%;
    left: 20%;
    width: 180px;
    height: 180px;
    background-image: url('imagenes/image12.jpeg');
    animation: heroFloat5 11s ease-in-out infinite;
    animation-delay: 3s;
}

/* Animaciones individuales para cada círculo */
@keyframes heroFloat1 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-20px) rotate(8deg);
        opacity: 0.9;
    }
}

@keyframes heroFloat2 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    33% {
        transform: translateY(-20px) rotate(-5deg) scale(1.02);
        opacity: 0.8;
    }
    66% {
        transform: translateY(-8px) rotate(3deg) scale(0.98);
        opacity: 0.9;
    }
}

@keyframes heroFloat3 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-12px) translateX(8px);
        opacity: 0.8;
    }
}

@keyframes heroFloat4 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    40% {
        transform: translateY(-18px) rotate(-8deg);
        opacity: 0.9;
    }
    80% {
        transform: translateY(-5px) rotate(4deg);
        opacity: 0.8;
    }
}

@keyframes heroFloat5 {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    30% {
        transform: translateY(-10px) scale(1.05);
        opacity: 0.8;
    }
    70% {
        transform: translateY(-16px) scale(0.95);
        opacity: 0.9;
    }
}

.hero-flowers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.flower {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.flower-1 { top: 20%; left: 10%; animation-delay: 0s; }
.flower-2 { top: 30%; right: 15%; animation-delay: 1s; }
.flower-3 { bottom: 30%; left: 20%; animation-delay: 2s; }
.flower-4 { top: 60%; right: 20%; animation-delay: 3s; }
.flower-5 { bottom: 20%; right: 30%; animation-delay: 4s; }

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

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--daisy-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-image-container {
    position: relative;
    display: inline-block;
}

.hero-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgba(255, 235, 59, 0.8);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.6);
}

.image-flowers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-flower {
    position: absolute;
    font-size: 1.5rem;
    animation: floatAround 4s ease-in-out infinite;
}

.floating-flower:nth-child(1) {
    top: -10px;
    left: 20px;
    animation-delay: 0s;
}

.floating-flower:nth-child(2) {
    top: 50%;
    right: -15px;
    animation-delay: 1.5s;
}

.floating-flower:nth-child(3) {
    bottom: -10px;
    left: 50%;
    animation-delay: 3s;
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-15px) scale(1.2); opacity: 1; }
}

.btn-custom {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.5);
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
}

/* Secciones */
.section {
    padding: 80px 0;
    position: relative;
}

.gallery-section {
    background: rgba(255, 255, 255, 0.05);
}

.filmography-section {
    background: rgba(255, 255, 255, 0.05);
}

.contact-section {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(78, 205, 196, 0.1));
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    color: white;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--daisy-yellow));
    border-radius: 2px;
}

/* Cards personalizadas */
.card-custom {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 235, 59, 0.3);
    border-radius: 20px;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-custom::before {
    content: '🌼';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.2rem;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.card-custom:hover {
    box-shadow: 0 25px 50px rgba(255, 107, 157, 0.4);
    border-color: rgba(255, 235, 59, 0.6);
}

.card-custom:hover::before {
    opacity: 1;
    transform: rotate(360deg);
}

/* Filmografía Cards */
.filmography-card {
    border-left: 4px solid var(--primary-color);
}

.series-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.series-2 {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
}

.series-3 {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
}

.series-4 {
    background: linear-gradient(45deg, var(--daisy-yellow), var(--daisy-green));
}

.filmography-card:hover .series-icon {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
}

/* Galería */
.gallery-filters {
    margin-bottom: 2rem;
}

.filter-btn {
    margin: 0 5px 10px 5px;
    border-color: rgba(255, 235, 59, 0.5);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-color: var(--daisy-yellow);
    color: white;
    transform: translateY(-2px);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 15px 30px rgba(255, 107, 157, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    transition: transform 0.4s ease;
    border-radius: 20px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 157, 0.9), rgba(78, 205, 196, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.gallery-overlay h5 {
    margin-bottom: 10px;
    font-weight: bold;
}

/* Timeline de noticias */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color), var(--daisy-yellow));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '🌼';
    position: absolute;
    width: 30px;
    height: 30px;
    right: -15px;
    background: var(--primary-color);
    border: 4px solid white;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -15px;
}

.timeline-content {
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 235, 59, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 235, 59, 0.6);
}

.timeline-content h4 {
    margin-bottom: 0.8rem;
    color: white;
    font-weight: 600;
}

.timeline-content h4 i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.timeline-content:hover h4 i {
    transform: scale(1.1);
}

.badge-categoria {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Filtros de noticias */
.news-filters {
    text-align: center;
    margin-bottom: 2rem;
}

.news-filter-btn {
    margin: 0 5px 10px 5px;
    border-color: rgba(255, 235, 59, 0.5);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.news-filter-btn.active,
.news-filter-btn:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-color: var(--daisy-yellow);
    color: white;
    transform: translateY(-2px);
}

/* Indicador de carga para noticias */
.news-loading {
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.7);
}

.news-loading i {
    font-size: 2rem;
    margin-bottom: 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Error de carga de noticias */
.news-error {
    text-align: center;
    padding: 40px;
    color: rgba(255, 107, 157, 0.8);
    background: rgba(255, 107, 157, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 157, 0.3);
}

.news-error i {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Efecto para noticias recientes */
.timeline-item.recent {
    position: relative;
}

.timeline-item.recent::before {
    content: 'NUEVO';
    position: absolute;
    top: -10px;
    right: 10px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Mejoras responsive para timeline con badges */
@media (max-width: 768px) {
    .timeline::after {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 5px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item.recent::before {
        right: 25px;
        top: -5px;
    }
    
    .badge-categoria {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

/* Sección de Agradecimiento de Hafsanur */
.thanks-section {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15), rgba(78, 205, 196, 0.15));
    border-top: 2px solid rgba(255, 235, 59, 0.2);
    border-bottom: 2px solid rgba(255, 235, 59, 0.2);
}

.thanks-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 235, 59, 0.4);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.3);
}

.thanks-flowers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.thanks-flower {
    position: absolute;
    font-size: 1.5rem;
    animation: thanksFloat 5s ease-in-out infinite;
    opacity: 0.4;
}

.thanks-flower-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.thanks-flower-2 {
    top: 15%;
    right: 10%;
    animation-delay: 1s;
}

.thanks-flower-3 {
    bottom: 20%;
    left: 8%;
    animation-delay: 2s;
}

.thanks-flower-4 {
    top: 70%;
    right: 15%;
    animation-delay: 3s;
}

.thanks-flower-5 {
    bottom: 10%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes thanksFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
        opacity: 0.7;
    }
}

.thanks-image-container {
    position: relative;
    display: inline-block;
}

.thanks-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 235, 59, 0.8);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.thanks-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.6);
}

.thanks-image-glow {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--daisy-yellow));
    opacity: 0.3;
    animation: thanksGlow 3s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes thanksGlow {
    0% {
        transform: scale(0.98);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.05);
        opacity: 0.6;
    }
}

.thanks-content {
    position: relative;
    z-index: 2;
}

.thanks-card .row {
    min-height: 250px;
}

.thanks-card .col-md-8 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-align: center;
    margin: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--daisy-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.thanks-title i {
    color: var(--primary-color);
    margin: 0 10px;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.thanks-quote {
    position: relative;
    margin: 20px 0;
    text-align: center;
}

.thanks-quote p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: white;
    margin: 0;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--daisy-yellow);
}

.quote-icon {
    color: var(--daisy-yellow);
    font-size: 1.2rem;
    margin: 0 8px;
    opacity: 0.8;
}

.thanks-signature {
    text-align: center;
    margin-top: 25px;
}

.signature-text {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.signature-name {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--daisy-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-family: cursive;
}

.signature-flowers {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.signature-flowers span {
    font-size: 1.2rem;
    animation: signatureFloat 2s ease-in-out infinite;
}

.signature-flowers span:nth-child(1) {
    animation-delay: 0s;
}

.signature-flowers span:nth-child(2) {
    animation-delay: 0.5s;
}

.signature-flowers span:nth-child(3) {
    animation-delay: 1s;
}

@keyframes signatureFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Responsive para sección de agradecimiento */
@media (max-width: 768px) {
    .thanks-card {
        padding: 25px;
    }
    
    .thanks-image {
        width: 150px;
        height: 150px;
    }
    
    .thanks-title {
        font-size: 1.5rem;
    }
    
    .thanks-quote p {
        font-size: 1rem;
        padding: 15px;
    }
    
    .signature-name {
        font-size: 1.6rem;
    }
    
    .thanks-flower {
        font-size: 1.2rem;
    }
}

/* Sección de Agradecimiento de Hafsanur */
.thanks-section {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15), rgba(78, 205, 196, 0.15));
    border-top: 2px solid rgba(255, 235, 59, 0.2);
    border-bottom: 2px solid rgba(255, 235, 59, 0.2);
}

.thanks-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 235, 59, 0.4);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.3);
}

.thanks-image-container {
    position: relative;
    display: inline-block;
}

.thanks-image {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    border: 4px solid rgba(255, 235, 59, 0.8);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
    transition: all 0.4s ease;
    cursor: pointer;
}

.thanks-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.6);
}

.thanks-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 25px;
    background: linear-gradient(45deg, var(--primary-color), var(--daisy-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.thanks-title i {
    color: var(--primary-color);
    margin: 0 10px;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.thanks-quote {
    position: relative;
    margin: 20px 0;
    text-align: center;
}

.thanks-quote p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: white;
    margin: 0;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--daisy-yellow);
}

.thanks-signature {
    text-align: center;
    margin-top: 25px;
}

.signature-text {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.signature-name {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--daisy-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-family: cursive;
}

.signature-flowers {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.signature-flowers span {
    font-size: 1.2rem;
    animation: signatureFloat 2s ease-in-out infinite;
}

.signature-flowers span:nth-child(1) {
    animation-delay: 0s;
}

.signature-flowers span:nth-child(2) {
    animation-delay: 0.5s;
}

.signature-flowers span:nth-child(3) {
    animation-delay: 1s;
}

@keyframes signatureFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Responsive para sección de agradecimiento */
@media (max-width: 768px) {
    .thanks-card {
        padding: 25px;
    }
    
    .thanks-image {
        width: 220px;
        height: 220px;
    }
    
    .thanks-title {
        font-size: 1.5rem;
    }
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 50px 0;
    text-align: center;
    border-top: 3px solid rgba(255, 235, 59, 0.3);
}

.footer-flowers {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-flowers span {
    margin: 0 10px;
    animation: bounce 2s infinite;
    display: inline-block;
}

.footer-flowers span:nth-child(2) { animation-delay: 0.2s; }
.footer-flowers span:nth-child(3) { animation-delay: 0.4s; }
.footer-flowers span:nth-child(4) { animation-delay: 0.6s; }
.footer-flowers span:nth-child(5) { animation-delay: 0.8s; }

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

.social-icons {
    margin: 30px 0;
}

.social-icons a {
    color: white;
    font-size: 2rem;
    margin: 0 20px;
    transition: all 0.4s ease;
    display: inline-block;
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-5px) scale(1.2);
}

/* Formularios */
.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 235, 59, 0.3);
    border-radius: 10px;
    color: white;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--daisy-yellow);
    box-shadow: 0 0 15px rgba(255, 235, 59, 0.3);
    color: white;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-label {
    color: white;
    font-weight: 500;
    margin-bottom: 8px;
}

/* Modal de Bienvenida */
.welcome-modal-content {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.98));
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 235, 59, 0.4);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.5);
    overflow: hidden;
    position: relative;
}

.welcome-flowers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.welcome-flower {
    position: absolute;
    font-size: 1.8rem;
    animation: welcomeFloat 4s ease-in-out infinite;
    opacity: 0.7;
}

.welcome-flower-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.welcome-flower-2 {
    top: 20%;
    right: 15%;
    animation-delay: 0.8s;
}

.welcome-flower-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 1.6s;
}

.welcome-flower-4 {
    top: 60%;
    right: 20%;
    animation-delay: 2.4s;
}

.welcome-flower-5 {
    bottom: 15%;
    right: 25%;
    animation-delay: 3.2s;
}

@keyframes welcomeFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 1;
    }
}

.modal-body {
    position: relative;
    z-index: 2;
}

.welcome-image-container {
    position: relative;
    display: inline-block;
}

.welcome-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 235, 59, 0.8);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
    transition: all 0.6s ease;
    animation: welcomeImagePulse 3s ease-in-out infinite;
}

.welcome-image-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--daisy-yellow));
    opacity: 0.3;
    animation: welcomeGlow 2s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes welcomeImagePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 50px rgba(255, 107, 157, 0.6);
    }
}

@keyframes welcomeGlow {
    0% {
        transform: scale(0.95);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--primary-color), var(--daisy-yellow), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: welcomeTitleGlow 2s ease-in-out infinite alternate;
    margin-bottom: 1rem;
}

.welcome-subtitle {
    font-size: 1.8rem;
    color: white;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes welcomeTitleGlow {
    0% {
        filter: brightness(1);
        text-shadow: 0 0 10px rgba(255, 235, 59, 0.3);
    }
    100% {
        filter: brightness(1.2);
        text-shadow: 0 0 20px rgba(255, 235, 59, 0.6);
    }
}

.sparkle {
    display: inline-block;
    animation: sparkleRotate 2s linear infinite;
}

@keyframes sparkleRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.welcome-message {
    position: relative;
    padding: 20px;
    margin: 20px 0;
}

.welcome-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: white;
    margin: 0;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.quote-icon {
    color: var(--daisy-yellow);
    font-size: 1.5rem;
    margin: 0 10px;
    opacity: 0.8;
    animation: quoteFloat 3s ease-in-out infinite;
}

@keyframes quoteFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

.welcome-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.welcome-divider span {
    font-size: 1.5rem;
    animation: dividerBounce 2s ease-in-out infinite;
}

.welcome-divider span:nth-child(1) {
    animation-delay: 0s;
}
.welcome-divider span:nth-child(2) {
    animation-delay: 0.3s;
}
.welcome-divider span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes dividerBounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
}

.welcome-btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--daisy-yellow));
    background-size: 300% 300%;
    animation: welcomeButtonGlow 3s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    transition: all 0.4s ease;
}

.welcome-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.6);
}

@keyframes welcomeButtonGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Animación de entrada del modal */
.modal.fade .modal-dialog {
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    transform: scale(0.8) translateY(-100px);
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* Responsive para modal de bienvenida */
@media (max-width: 768px) {
    .welcome-image {
        width: 150px;
        height: 150px;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .welcome-subtitle {
        font-size: 1.4rem;
    }
    
    .welcome-quote {
        font-size: 1.1rem;
    }
    
    .welcome-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .welcome-flower {
        font-size: 1.4rem;
    }
}

.modal-header {
    border-bottom: 1px solid rgba(255, 235, 59, 0.2);
}

.modal-footer {
    border-top: 1px solid rgba(255, 235, 59, 0.2);
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

/* Efectos especiales */
.sparkle {
    position: relative;
}

.sparkle::before {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -10px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-image {
        width: 250px;
        height: 250px;
    }
    
    /* Círculos más pequeños en móvil */
    .hero-circle-1 {
        width: 100px;
        height: 100px;
        top: 10%;
        left: 5%;
    }
    
    .hero-circle-2 {
        width: 110px;
        height: 110px;
        top: 15%;
        right: 8%;
    }
    
    .hero-circle-3 {
        width: 90px;
        height: 90px;
        top: 60%;
        left: 3%;
    }
    
    .hero-circle-4 {
        width: 105px;
        height: 105px;
        bottom: 20%;
        right: 5%;
    }
    
    .hero-circle-5 {
        width: 95px;
        height: 95px;
        bottom: 10%;
        left: 15%;
    }
    
    .timeline::after {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 5px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .social-icons a {
        font-size: 1.5rem;
        margin: 0 10px;
    }
    
    .flower {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .card-custom {
        margin-bottom: 20px;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

/* Efectos adicionales para margaritas */
.daisy-effect {
    position: relative;
}

.daisy-effect::after {
    content: '🌼';
    position: absolute;
    top: 5px;
    right: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.daisy-effect:hover::after {
    opacity: 1;
}

/* Botones con efecto margarita */
.btn-outline-light:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--daisy-yellow));
    border-color: var(--daisy-yellow);
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
}


.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Para mejor contraste en diferentes secciones */
.timeline .text-muted {
    color: rgba(255, 235, 59, 0.8) !important;
}

.card-custom .text-muted {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* En el modal de bienvenida */
.modal .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}