/* Save the Date Styles */
.save-the-date-container {
    width: 100%;
    padding: 20px 0;
    /* background: linear-gradient(135deg, #00b894 0%, #00cec9 100%); */
    overflow: hidden;
}

.save-the-date-wrapper {
    background: #00b894;
    border-radius: 10px;
    padding: 30px;
    position: relative;
}

/* Header */
.std-header {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #d63031;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    z-index: 10;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

.std-data-label {
    letter-spacing: 1px;
}

/* Content Grid */
.std-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    align-items: center;
    min-height: 400px;
    margin-top: 20px;
}

/* Left Side */
.std-left {
    text-align: center;
    color: white;
    padding: 20px;
    border-left: 5px solid white;
    border-right: 5px solid white;
}

.std-calendar-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.std-calendar-icon svg {
    width: 100%;
    height: 100%;
    stroke: white;
}

.std-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Center - Image */
.std-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.std-image {
    max-width: 70%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.3);
}

.std-image-placeholder {
    width: 100%;
    height: 300px;
    background: #2d3436;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    border: 5px solid rgba(255, 255, 255, 0.3);
}

/* Right Side - Texto */
.std-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.std-texto-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    /*  min-height: 500px; */
    color: #00b894;
    font-size: 18px;
    line-height: 1.6;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.std-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 5px solid white;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.std-local-label {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.std-local-icon {
    font-size: 24px;
}

.std-local-text {
    background: white;
    color: #00b894;
    padding: 5px 15px;
    border-radius: 5px;
    flex: 1;
}

/* Responsive */
@media (max-width: 900px) {
    .std-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .std-left {
        border: none;
        border-bottom: 3px solid white;
        padding-bottom: 20px;
    }

    .std-title {
        font-size: 36px;
    }

    .std-texto-box {
        min-height: auto;
        margin: 20px 0;
    }
}

@media (max-width: 576px) {
    .save-the-date-wrapper {
        padding: 20px 15px;
    }

    .std-title {
        font-size: 28px;
    }

    .std-footer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .std-local-text {
        width: 100%;
        text-align: center;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.save-the-date-wrapper {
    animation: fadeIn 0.6s ease-out;
}