/* Estilos Gerais */
body {
    background-color: #f9f3f3;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    padding-bottom: 2rem;
}

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

/* Banner Rotativo */
.banner-single {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background-color: #f9f3f3;
}

.carousel-item {
    height: auto;
}

.carousel-item img {
    display: block;
    width: 100%;
    border-radius: 15px;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 15px;
    bottom: 20px;
    position: absolute;
    right: 15%;
    left: 15%;
    text-align: center;
}

/* Cartão Principal */
.main-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 2rem;
}

.card-header {
    background: linear-gradient(135deg, #f5a9b8 0%, #d985a2 100%);
    color: white;
    border-bottom: none;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.card-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #f5a9b8 0%, #d985a2 100%);
    transform: rotate(45deg);
    z-index: 1;
}

.card-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.card-header p {
    font-size: 1.2rem;
    margin-bottom: 0;
    font-weight: 300;
}

.card-body {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.card-footer {
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    text-align: center;
}

/* Formulário */
.form-label {
    font-weight: 500;
    color: #555;
}

.form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #d985a2;
    box-shadow: 0 0 0 0.25rem rgba(217, 133, 162, 0.25);
}

/* Botão Principal */
.btn-primary {
    background: linear-gradient(135deg, #d985a2 0%, #c06b89 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(217, 133, 162, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c06b89 0%, #b05070 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(192, 107, 137, 0.4);
}

/* Detalhes decorativos */
.anniversary-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #ffcd3c;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(255, 205, 60, 0.5);
    z-index: 10;
}

.anniversary-badge span:first-child {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    color: #333;
}

.anniversary-badge span:last-child {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #333;
}

/* Informações do evento */
.evento-info {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f9f3f3;
    border-radius: 10px;
    border-left: 5px solid #d985a2;
}

.evento-info h3 {
    color: #d985a2;
    margin-bottom: 1rem;
    font-weight: 600;
}

.evento-info i {
    color: #d985a2;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.evento-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

/* Alerta de sucesso */
.alert-success {
    background-color: #e8f5e9;
    border-color: #c8e6c9;
    color: #2e7d32;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.alert-success::before {
    content: '✓';
    background-color: #2e7d32;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
}

/* Responsividade */
@media (max-width: 768px) {
    .card-header h1 {
        font-size: 2rem;
    }
    
    .card-header p {
        font-size: 1rem;
    }
    
    .anniversary-badge {
        width: 60px;
        height: 60px;
        top: -10px;
        right: -10px;
    }
    
    .anniversary-badge span:first-child {
        font-size: 1.4rem;
    }
    
    .anniversary-badge span:last-child {
        font-size: 0.7rem;
    }
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.scroll-down-arrow {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    text-align: center;
    cursor: pointer;
    animation: bounce 2s infinite;
    transition: all 0.3s;
}

.scroll-down-arrow i {
    color: #fff;
    font-size: 30px;
    background-color: rgba(217, 133, 162, 0.9);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.scroll-down-arrow:hover i {
    background-color: #d985a2;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

/* Links */
a {
    color: #d985a2;
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: #c06b89;
    text-decoration: underline;
}