/* Estilos para a seção de Eventos */

.eventos-section {
    position: relative;
    padding: 140px 0 120px;
    background-color: #000;
    color: #fff;
    overflow: hidden;
    border-top: 1px solid rgba(128, 216, 208, 0.1);
}

/* Fundo elegante com gradiente */
.eventos-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1c1c1c 0%, #2d2d2d 50%, #1a1a1a 100%);
    z-index: 0;
    overflow: hidden;
}

/* Elementos decorativos no fundo */
.eventos-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(circle, rgba(128, 216, 208, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: backgroundMove 60s linear infinite;
    opacity: 0.5;
}

@keyframes backgroundMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Overlay gradiente para melhorar legibilidade */
.eventos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 1;
}

.eventos-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.eventos-title {
    font-family: 'cormorant-garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #fff;
}

.eventos-description {
    font-family: 'santral', sans-serif;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Cards de tipos de eventos */
.eventos-tipos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
}

.evento-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    padding: 40px 30px;
    width: 300px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.evento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.4s ease;
}

.evento-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(128, 216, 208, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.evento-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(128, 216, 208, 0.2);
}

.evento-card:hover::before {
    height: 100%;
}

.evento-card:hover::after {
    opacity: 1;
}

.evento-image {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Placeholders elegantes para cada categoria de evento */
.evento-casamento {
    background: linear-gradient(135deg, #e8f7f6 0%, #c1e8e6 100%);
    box-shadow: inset 0 0 40px rgba(128, 216, 208, 0.2);
}

.evento-casamento::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='rgba(128, 216, 208, 0.2)'%3E%3Cpath d='M256 160c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm0 160c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z'/%3E%3Cpath d='M256 96c-106 0-192 86-192 192s86 192 192 192 192-86 192-192S362 96 256 96zm0 352c-88.2 0-160-71.8-160-160S167.8 128 256 128s160 71.8 160 160-71.8 160-160 160z'/%3E%3C/svg%3E");
    background-size: contain;
    opacity: 0.4;
    z-index: 0;
}

.evento-15anos {
    background: linear-gradient(135deg, #f0f7f7 0%, #d8efee 100%);
    box-shadow: inset 0 0 40px rgba(128, 216, 208, 0.15);
}

.evento-15anos::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='rgba(128, 216, 208, 0.2)'%3E%3Cpath d='M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z'/%3E%3C/svg%3E");
    background-size: contain;
    opacity: 0.4;
    z-index: 0;
}

.evento-corporativo {
    background: linear-gradient(135deg, #e1f7f5 0%, #c1e8e4 100%);
    box-shadow: inset 0 0 40px rgba(128, 216, 208, 0.25);
}

.evento-corporativo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512' fill='rgba(128, 216, 208, 0.2)'%3E%3Cpath d='M624 416H381.54c-.74 19.81-14.71 32-32.74 32H288c-18.69 0-33.02-17.47-32.77-32H16c-8.8 0-16 7.2-16 16v16c0 35.2 28.8 64 64 64h512c35.2 0 64-28.8 64-64v-16c0-8.8-7.2-16-16-16zM576 48c0-26.4-21.6-48-48-48H112C85.6 0 64 21.6 64 48v336h512V48zm-64 272H128V64h384v256z'/%3E%3C/svg%3E");
    background-size: contain;
    opacity: 0.4;
    z-index: 0;
}

.evento-infantil {
    /* Sem estilos específicos para manter igual aos outros */
}

/* Overlay para melhorar contraste */
.placeholder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.2) 100%);
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.evento-card:hover .placeholder-overlay {
    opacity: 0.5;
}

/* Texto do placeholder */
.placeholder-text {
    position: relative;
    z-index: 2;
    font-family: 'cormorant-garamond', serif;
    font-size: 1.8rem;
    color: #1a6660;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
    opacity: 0.9;
    transition: all 0.4s ease;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 5px 15px;
    border-radius: 2px;
}

.evento-card:hover .placeholder-text {
    transform: scale(1.1);
    opacity: 1;
}

/* Elementos decorativos nos placeholders */
.evento-image::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1;
    transition: all 0.4s ease;
}

.evento-card:hover .evento-image::before {
    width: 90%;
    height: 90%;
}

.evento-card h3 {
    font-family: 'cormorant-garamond', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.evento-card p {
    font-family: 'santral', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Botão CTA */
.eventos-cta {
    margin-top: 70px;
}

.eventos-btn {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    font-family: 'santral', sans-serif;
    font-size: 0.95rem;
    padding: 18px 40px;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.eventos-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.eventos-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.eventos-btn:hover {
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
    border-color: transparent;
}

.eventos-btn:hover::before {
    width: 100%;
}

.eventos-btn:hover::after {
    left: 100%;
}

/* Responsividade */
@media (max-width: 992px) {
    .eventos-tipos {
        flex-wrap: wrap;
    }
    
    .evento-card {
        width: calc(50% - 15px);
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .eventos-section {
        padding: 80px 0;
    }
    
    .eventos-title {
        font-size: 2.8rem;
    }
    
    .eventos-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .eventos-tipos {
        flex-direction: column;
        align-items: center;
    }
    
    .evento-card {
        width: 100%;
        max-width: 320px;
    }
}
