@import url('https://fonts.googleapis.com/css2?family=Rouge+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Crimson+Text:wght@400;600&display=swap');

:root {
    /* Variáveis de Cores - Inspiradas na nova imagem */
    --primary-green: #7A8B6B;
    --secondary-green: #9CAF88;
    --light-sage: #E8F0E3;
    --cream-white: #F8F6F3;
    --gold-accent: #C4A572;
    --text-dark: #2C3E2D;
    --text-light: #FFFFFF;
    --soft-blue: #B8C5D1;
    --deep-forest: #4A5D4A;
    
    /* Floating petals animation */
    @keyframes float {
        0% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(180deg); }
        100% { transform: translateY(0px) rotate(360deg); }
    }
    
    .floating-petal {
        position: absolute;
        width: 6px;
        height: 6px;
        background: var(--soft-blue);
        border-radius: 50%;
        opacity: 0.5;
        z-index: 1;
    }
    
    /* Gradientes */
    --nature-gradient: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    --light-gradient: linear-gradient(135deg, var(--cream-white), var(--light-sage));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Playfair Display', serif;
    background: var(--light-gradient);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.screen {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.8s ease-in-out;
}

/* Tela de Abertura com Efeito de Carta */
#opening-screen {
    background: linear-gradient(135deg, #8B7355 0%, #A0956B 50%, #7A6B47 100%);
    opacity: 1;
    transition: opacity 1.5s ease-out;
    perspective: 1000px;
}

#opening-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Container do Envelope */
.envelope-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    animation: fadeInUp 1.5s ease-out;
}

/* Base do Envelope */
.envelope-base {
    position: relative;
    width: 350px;
    height: 250px;
    margin-bottom: 2rem;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

.envelope-back,
.envelope-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #F5F5DC 0%, #F0E68C 100%);
    border: 2px solid var(--gold-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.envelope-back {
    background: linear-gradient(145deg, #E6E6D3 0%, #DDD8B8 100%);
    transform: translateZ(-2px);
}

.envelope-front {
    background: linear-gradient(145deg, #F5F5DC 0%, #F0E68C 100%);
    clip-path: polygon(0 0, 100% 0, 50% 60%, 0 0);
    transform: translateZ(1px);
}

/* Aba do Envelope */
.envelope-flap {
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: 60%;
    background: linear-gradient(145deg, #F0E68C 0%, #DAA520 100%);
    border: 2px solid var(--gold-accent);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transform-origin: 50% 0%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.envelope-flap.opening {
    transform: rotateX(-180deg);
}

/* Selo de Cera */
.flap-seal {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.wax-seal {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, #8B0000 0%, #DC143C  50%, #8B0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    border: 2px solid #654321;
    transition: transform 0.3s ease;
}

.wax-seal:hover {
    transform: scale(1.1);
}

.seal-monogram {
    color: #FFD700;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Carta Interna */
.letter-content {
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.5s ease 0.2s;
    z-index: 5;
}

.letter-content.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.letter-paper {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #FFFEF7 0%, #FFF8DC 100%);
    border: 1px solid #E6E6D3;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.letter-header {
    margin-bottom: 1rem;
}

.ornament-top,
.ornament-bottom {
    color: var(--gold-accent);
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.monogram-letter {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 0.2em;
    margin: 0.5rem 0;
}

.letter-text p {
    margin: 0.5rem 0;
    font-family: 'Crimson Text', serif;
    color: var(--text-dark);
    line-height: 1.4;
}

.letter-text .highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
    font-family: 'Playfair Display', serif;
}

.letter-text .date-preview {
    font-size: 0.9rem;
    color: var(--gold-accent);
    font-weight: 500;
}

/* Instruções de Abertura */
.open-instruction {
    text-align: center;
    animation: pulse 2s infinite;
}

.open-btn {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border: 2px solid var(--gold-accent);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.open-btn:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.9));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.open-btn:hover .btn-glow {
    left: 100%;
}

.hand-icon {
    font-size: 1.5rem;
    animation: bounce 1s infinite;
}

.btn-text {
    font-weight: 600;
}

.instruction-text {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Crimson Text', serif;
    font-size: 0.9rem;
    font-style: italic;
}

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

.monogram {
    width: 120px;
    height: 120px;
    background: var(--nature-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    box-shadow: 0 10px 30px rgba(122, 139, 107, 0.4);
    border: 3px solid var(--gold-accent);
}

.monogram span {
    color: var(--text-light);
    font-size: 36px;
    font-family: 'Rouge Script', cursive;
    font-weight: bold;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* Tela do Convite */
#invitation-screen {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../assets/1001331182_276d2d396170c6f60eba4a5bc65cb48d-11_06_2025, 22_10_05.png') center center/cover no-repeat;
    background-attachment: fixed;
    color: var(--text-light);
    padding: 20px;
    position: relative;
    width: 100%;
    min-height: 100vh;
}



#invitation-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.invitation-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 0 100px 0;
}

.quote {
    text-align: center;
    font-style: italic;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.verse {
    font-size: 14px;
    opacity: 0.9;
    font-weight: normal;
}

.names {
    font-family: 'Rouge Script', cursive;
    font-size: 64px;
    font-weight: normal;
    text-align: center;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.bride-name,
.groom-name {
    font-family: 'Rouge Script', cursive;
    font-size: 100px;
    font-weight: normal;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--text-light);
    line-height: 1;
}

.ampersand {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 300;
    color: var(--accent-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 8px 0;
}

.invitation-text {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.date-info {
    margin: 30px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}



.venue-section {
    text-align: center;
    margin-top: 20px;
}

.venue-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.venue-address {
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    letter-spacing: 0.5px;
    line-height: 1.4;
}



/* Timer de Contagem Regressiva */
.countdown-timer {
    margin: 30px 0;
    text-align: center;
}

.countdown-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    padding: 12px;
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.time-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.time-label {
    font-size: 0.9rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-family: 'Crimson Text', serif;
    font-weight: 600;
}

.location {
    text-align: center;
    font-size: 18px;
    margin: 20px 0;
    opacity: 0.95;
    font-weight: bold;
    line-height: 1.4;
    font-family: 'Crimson Text', serif;
}

.ceremony-note {
    text-align: center;
    font-size: 14px;
    margin: 20px 0;
    opacity: 0.9;
    font-style: italic;
    line-height: 1.4;
}

.action-buttons {
    margin-top: auto;
}

.btn-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.action-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 15px 8px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 20px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-text {
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.btn-subtext {
    font-size: 8px;
    opacity: 0.8;
    margin-top: 2px;
}

/* Mini Player de Música */
.music-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.music-player:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.play-pause-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--gold-accent);
}

.play-pause-btn:hover {
    background: rgba(196, 165, 114, 0.2);
    transform: scale(1.1);
}

.play-pause-btn:active {
    transform: scale(0.95);
}

.play-icon,
.pause-icon {
    transition: all 0.3s ease;
}

/* Animação de pulsação quando tocando */
.music-player.playing {
    animation: musicPulse 2s ease-in-out infinite;
}

@keyframes musicPulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(196, 165, 114, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(196, 165, 114, 0);
    }
}

/* Responsividade do player */
@media (max-width: 768px) {
    .music-player {
        bottom: 15px;
        right: 15px;
        padding: 6px;
    }
    
    .play-pause-btn {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .music-player {
        bottom: 10px;
        right: 10px;
        padding: 5px;
    }
    
    .play-pause-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/* Animações */
.screen.slide-out {
    transform: translateX(-100%);
    opacity: 0;
}

.screen.slide-in {
    transform: translateX(0);
    opacity: 1;
}

/* Responsividade */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        width: 100%;
        min-height: 100vh;
    }
    
    #invitation-screen {
        padding: 15px;
        background-attachment: scroll;
    }
    
    .invitation-content {
        padding: 20px 0 120px 0;
        gap: 25px;
        max-width: 100%;
    }
    
    .couple-names {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .bride-name,
    .groom-name {
        font-size: 65px;
    }
    
    .ampersand {
        font-size: 32px;
    }
    
    .event-date {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin: 15px 0;
    letter-spacing: 1px;
    font-family: 'Crimson Text', serif;
}
    
    .event-location {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    
    .btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 1.1rem;
        min-height: 50px;
        font-family: 'Crimson Text', serif;
    }
    
    /* Timer responsivo */
    .countdown-timer {
        margin: 20px 0;
    }
    
    .countdown-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .countdown-display {
        gap: 15px;
    }
    
    .time-unit {
        width: 70px;
        height: 70px;
        padding: 10px;
    }
    

    
    .venue-name {
        font-size: 1.1rem;
    }
    
    .venue-address {
        font-size: 0.9rem;
    }
    
    .time-number {
        font-size: 24px;
    }
    
    .time-label {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    #invitation-screen {
        padding: 10px;
    }
    
    .invitation-content {
        padding: 15px 0 140px 0;
        gap: 20px;
    }
    
    .couple-names {
        font-size: 1.8rem;
    }
    
    .bride-name,
    .groom-name {
        font-size: 75px;
    }
    
    .ampersand {
        font-size: 38px;
    }
    
    .event-date {
        font-size: 1rem;
    }
    
    .event-location {
        font-size: 0.9rem;
    }
    
    .countdown-display {
        gap: 10px;
    }
    
    .time-unit {
        width: 60px;
        height: 60px;
        padding: 8px;
    }
    

    
    .venue-name {
        font-size: 1rem;
    }
    
    .venue-address {
        font-size: 0.85rem;
    }
    
    .time-number {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 12px 15px;
        font-size: 1rem;
        min-height: 45px;
        font-family: 'Crimson Text', serif;
    }
}

/* Ajustes específicos para dispositivos muito pequenos */
@media (max-width: 375px) {
    #invitation-screen {
        padding: 8px;
    }
    
    .invitation-content {
        padding: 10px 0 150px 0;
        gap: 15px;
    }
    
    .couple-names {
        font-size: 1.6rem;
    }
    
    .bride-name,
    .groom-name {
        font-size: 55px;
    }
    
    .ampersand {
        font-size: 28px;
    }
    
    .event-date {
        font-size: 0.9rem;
    }
    
    .event-location {
        font-size: 0.8rem;
    }
    
    .time-number {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 12px;
        font-size: 0.9rem;
        min-height: 40px;
        font-family: 'Crimson Text', serif;
    }
}

/* Modal de Confirmação de Presença */
.confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.confirmation-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--cream-white);
    border-radius: 20px;
    padding: 0;
    width: calc(100vw - 40px);
    max-width: 450px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--gold-accent);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    padding: 20px 30px;
    border-radius: 18px 18px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

#confirmation-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-green);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-sage);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(196, 165, 114, 0.2);
}

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

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-cancel,
.btn-confirm {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cancel {
    background: var(--light-sage);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-cancel:hover {
    background: var(--primary-green);
    color: white;
}

.btn-confirm {
    background: linear-gradient(135deg, var(--gold-accent), #B8860B);
    color: white;
    border: 2px solid var(--gold-accent);
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 165, 114, 0.4);
}

.btn-confirm:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Mensagens de Sucesso e Erro */
.success-message,
.error-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show,
.error-message.show {
    opacity: 1;
    visibility: visible;
}

.message-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid;
    min-width: 300px;
}

.success-message .message-content {
    border-color: #4CAF50;
}

.error-message .message-content {
    border-color: #f44336;
}

.message-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.message-content h3 {
    margin: 0 0 10px 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.success-message h3 {
    color: #4CAF50;
}

.error-message h3 {
    color: #f44336;
}

.message-content p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .modal-content {
        width: calc(100vw - 30px);
        max-width: none;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    #confirmation-form {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .message-content {
        margin: 20px;
        padding: 25px;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: calc(100vw - 20px);
    }
    
    .modal-header {
        padding: 12px 15px;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    #confirmation-form {
        padding: 15px;
    }
    
    .form-group input,
    .form-group select {
        padding: 10px 12px;
    }
    
    .btn-cancel,
    .btn-confirm {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}