/* CSS Principal - Festa dos 250 Anos */
/* Design responsivo e moderno com animações */

:root {
    --primary-color: #ff6b35;
    --primary-color-rgb: 255, 107, 53;
    --secondary-color: #f7931e;
    --secondary-color-rgb: 247, 147, 30;
    --accent-color: #ffd23f;
    --accent-color-rgb: 255, 210, 63;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #343a40;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --border-radius: 15px;
    --border-radius-sm: 8px;
    --border-radius-lg: 25px;
    --box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    --box-shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
    --box-shadow-xl: 0 12px 40px rgba(0,0,0,0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.6s ease;
}

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

body {
    font-family: 'Poppins', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* Countdown Timer */
.countdown-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.countdown-title {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1rem 0.8rem;
    min-width: 80px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    /* Correção específica para iOS/iPhone */
    -webkit-appearance: none;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    /* animation: countdown-pulse 2s ease-in-out infinite; */
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.countdown-finished {
    text-align: center;
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: celebration 1s ease-in-out infinite alternate;
}

@keyframes countdown-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    }
}

@keyframes celebration {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .countdown-timer {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 0.8rem 0.6rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .countdown-title {
        font-size: 1.3rem;
    }
}

/* Correção específica para dispositivos iOS/iPhone */
@supports (-webkit-touch-callout: none) {
    .countdown-item {
        background: rgba(255, 255, 255, 0.2) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        backdrop-filter: blur(10px) !important;
        border: 2px solid rgba(255, 255, 255, 0.4) !important;
    }
}

/* Animações Avançadas */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(var(--primary-color-rgb), 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes confetti {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color), 0 0 15px var(--primary-color);
    }
    50% {
        box-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color), 0 0 30px var(--primary-color);
    }
}

@keyframes heartbeat {
    0% {
        box-shadow: var(--box-shadow-xl), 0 0 40px rgba(106, 90, 205, 0.4);
        transform: scale(1);
    }
    14% {
        box-shadow: var(--box-shadow-xl), 0 0 50px rgba(106, 90, 205, 0.5);
        transform: scale(1.01);
    }
    28% {
        box-shadow: var(--box-shadow-xl), 0 0 40px rgba(106, 90, 205, 0.4);
        transform: scale(1);
    }
    42% {
        box-shadow: var(--box-shadow-xl), 0 0 55px rgba(106, 90, 205, 0.6);
        transform: scale(1.02);
    }
    70% {
        box-shadow: var(--box-shadow-xl), 0 0 40px rgba(106, 90, 205, 0.4);
        transform: scale(1);
    }
    100% {
        box-shadow: var(--box-shadow-xl), 0 0 40px rgba(106, 90, 205, 0.4);
        transform: scale(1);
    }
}

@keyframes cosmic-shimmer {
    0% {
        transform: translateX(-100%) rotate(0deg);
    }
    50% {
        transform: translateX(0%) rotate(180deg);
    }
    100% {
        transform: translateX(100%) rotate(360deg);
    }
}

/* Hero Logo Section */
.hero-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-logo {
    width: 512px;
    height: 512px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: logo-glow 3s ease-in-out infinite alternate;
    transition: transform 0.3s ease;
    margin-top: 0rem;
    margin-bottom: 0.5rem;
}

.hero-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

@keyframes logo-glow {
    0% {
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 10px rgba(106, 90, 205, 0.3));
    }
    100% {
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 20px rgba(30, 144, 255, 0.6));
    }
}

@media (max-width: 768px) {
    .hero-logo {
        width: 384;
        height: 384px;
        margin-top: 0rem;
        margin-bottom: 0.25rem;
    }
    
    .hero-logo-section {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 384px;
        height: 384px;
    }
}

/* Classes de animação - DESABILITADAS para evitar piscar */
.fade-in-up {
    /* animation: fadeInUp 0.8s ease-out; */
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    /* animation: fadeInLeft 0.8s ease-out; */
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    /* animation: fadeInRight 0.8s ease-out; */
    opacity: 1;
    transform: translateX(0);
}

.slide-in-down {
    /* animation: slideInDown 0.6s ease-out; */
    opacity: 1;
    transform: translateY(0);
}

.bounce {
    /* animation: bounce 2s infinite; */
    transform: translateY(0);
}

.pulse {
    /* animation: pulse 2s infinite; */
    transform: scale(1);
    box-shadow: none;
}

.float {
    /* animation: float 3s ease-in-out infinite; */
    transform: translateY(0px);
}

.glow {
    animation: glow 2s ease-in-out infinite alternate;
}

.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Animações de entrada com delay */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* Efeitos de hover avançados */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-xl);
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.6);
}

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

.hover-rotate:hover {
    transform: rotate(5deg);
}

/* Header */
.header {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 1rem 0;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Banner principal */
.hero-banner {
    background: linear-gradient(135deg, rgba(106, 90, 205, 0.9), rgba(72, 61, 139, 0.9)), 
                linear-gradient(45deg, rgba(30, 144, 255, 0.8), rgba(138, 43, 226, 0.8)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="cosmic" patternUnits="userSpaceOnUse" width="120" height="120"><circle cx="20" cy="20" r="3" fill="%234169e1" opacity="0.8"/><circle cx="80" cy="40" r="2" fill="%236a5acd" opacity="0.9"/><circle cx="50" cy="70" r="4" fill="%2300bfff" opacity="0.7"/><circle cx="100" cy="90" r="2" fill="%239370db" opacity="0.8"/><polygon points="30,30 35,40 25,40" fill="%23ff69b4" opacity="0.6"/><polygon points="70,80 75,90 65,90" fill="%2300ced1" opacity="0.7"/><rect x="60" y="20" width="4" height="4" fill="%23da70d6" transform="rotate(45 62 22)" opacity="0.8"/><rect x="15" y="85" width="3" height="3" fill="%2320b2aa" transform="rotate(30 16.5 86.5)" opacity="0.9"/><path d="M85,25 Q90,20 95,25 Q90,30 85,25" fill="%23ffd700" opacity="0.6"/></pattern></defs><rect width="100%" height="100%" fill="url(%23cosmic)"/></svg>');
    background-size: cover, cover, 200px 200px;
    background-position: center, center, 0 0;
    background-attachment: fixed;
    color: var(--text-light);
    text-align: center;
    padding: 3rem 2rem 6rem 2rem;
    border-radius: var(--border-radius-lg);
    margin-bottom: 8rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow-xl), 0 0 40px rgba(106, 90, 205, 0.4);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*animation: heartbeat 2s ease-in-out infinite;*/
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 30%, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 30%, 
        transparent 60%), 
    radial-gradient(ellipse 40% 30% at 30% 70%, 
        rgba(106, 90, 205, 0.1) 0%, 
        transparent 50%), 
    radial-gradient(ellipse 40% 30% at 70% 70%, 
        rgba(72, 61, 139, 0.1) 0%, 
        transparent 50%);
    animation: cosmic-shimmer 3s infinite;
    pointer-events: none;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 210, 63, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-info {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Botões Modernos */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    position: relative;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.4);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text-light);
}

.btn-neon {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
    box-shadow: 0 0 10px rgba(var(--primary-color-rgb), 0.3);
}

.btn-neon:hover {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.6),
                inset 0 0 20px rgba(var(--primary-color-rgb), 0.2);
    text-shadow: none;
}

.btn-floating {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.btn-success {
    background: var(--success-color);
    color: var(--text-light);
}

.btn-danger {
    background: var(--danger-color);
    color: var(--text-light);
}

/* Cards Modernos */
.card {
    background: var(--text-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--box-shadow-xl);
    border-color: var(--primary-color);
}

.card-glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.card-gradient {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.card-neon {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(var(--primary-color-rgb), 0.3),
                inset 0 0 10px rgba(var(--primary-color-rgb), 0.1);
}

.card-neon:hover {
    box-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.6),
                inset 0 0 20px rgba(var(--primary-color-rgb), 0.2);
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Grid de aniversariantes */
.aniversariantes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.aniversariante-card {
    text-align: center;
    background: var(--text-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.aniversariante-card:hover {
    transform: scale(1.05);
}

.aniversariante-foto {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 5px solid var(--accent-color);
}

.aniversariante-nome {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Formulários */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-control.is-invalid {
    border-color: var(--danger-color);
}

.invalid-feedback {
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Alertas */
.alert {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    position: relative;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.btn-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Galeria de fotos */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.photo-item:hover {
    transform: scale(1.05);
}

.photo-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--text-light);
    padding: 1rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.photo-item:hover .photo-overlay {
    transform: translateY(0);
}

/* Mural de mensagens */
.message-thread {
    background: var(--text-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow);
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.message-author {
    font-weight: bold;
    color: var(--primary-color);
}

.message-date {
    color: #6c757d;
    font-size: 0.875rem;
}

.message-content {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.message-replies {
    margin-left: 2rem;
    border-left: 3px solid var(--accent-color);
    padding-left: 1rem;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

/* Responsividade Avançada */

/* Tablets e dispositivos médios */
@media (max-width: 1024px) {
    .container {
        padding: 1.5rem;
    }
    
    .hero-banner {
        padding: 4rem 1.5rem;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .aniversariantes-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

/* Smartphones e tablets pequenos */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        position: relative;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: var(--border-radius);
        padding: 1rem;
        box-shadow: var(--box-shadow);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
        animation: slideInDown 0.3s ease;
    }
    
    .nav-menu a {
        color: var(--text-dark);
        padding: 1rem;
        border-radius: var(--border-radius-sm);
        margin-bottom: 0.5rem;
        text-align: center;
        transition: var(--transition);
    }
    
    .nav-menu a:hover {
        background: var(--primary-color);
        color: var(--text-light);
        transform: translateX(5px);
    }
    
    .mobile-menu-toggle {
        display: block;
        padding: 0.5rem;
        border-radius: var(--border-radius-sm);
        transition: var(--transition);
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-banner {
        padding: 3rem 1rem;
        margin-bottom: 2rem;
    }
    
    .container {
        padding: 1rem;
    }
    
    .aniversariantes-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 0.8rem;
    }
    
    .message-replies {
        margin-left: 1rem;
        padding-left: 0.8rem;
    }
    
    .card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .btn-floating {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Melhorar toque em dispositivos móveis */
    .btn, .form-control, .nav-menu a {
        min-height: 44px;
    }
    
    /* Espaçamento específico para seção de informações em mobile */
    .informacoes-section .row .col-md-6 {
        margin-bottom: 2rem;
    }
    
    .informacoes-section .row .col-md-6:last-child {
        margin-bottom: 0;
    }
}

/* Smartphones pequenos */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-info {
        font-size: 1rem;
    }
    
    .hero-banner {
        padding: 2.5rem 0.8rem;
        border-radius: var(--border-radius);
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .card {
        padding: 1.2rem;
        border-radius: var(--border-radius);
    }
    
    .aniversariante-foto {
        width: 120px;
        height: 120px;
    }
    
    .aniversariante-nome {
        font-size: 1.1rem;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.5rem;
    }
    
    .photo-item img {
        height: 150px;
    }
    
    .container {
        padding: 0.8rem;
    }
    
    .form-control {
        padding: 0.8rem;
        font-size: 16px; /* Evita zoom no iOS */
    }
    
    .navbar {
        padding: 0.8rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .message-thread {
        padding: 1rem;
    }
    
    .message-replies {
        margin-left: 0.5rem;
        padding-left: 0.5rem;
    }
}

/* Dispositivos muito pequenos */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0.5rem;
    }
    
    .card {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .aniversariante-foto {
        width: 100px;
        height: 100px;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .photo-item img {
        height: 120px;
    }
}

/* Correções específicas para blocos call-to-action */
/* Garantir aparência consistente entre desktop e mobile */
.card.bg-gradient,
.card.bg-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
}

.card.bg-gradient .card-body,
.card.bg-primary .card-body {
    padding: 3rem 2rem !important;
}

.card.bg-gradient h2,
.card.bg-gradient h3,
.card.bg-primary h2,
.card.bg-primary h3 {
    color: white !important;
    font-weight: bold !important;
    margin-bottom: 1rem !important;
}

.card.bg-gradient .lead,
.card.bg-primary .lead {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.2rem !important;
    margin-bottom: 2rem !important;
}

.card.bg-gradient .btn,
.card.bg-primary .btn {
    margin: 0.5rem !important;
    min-width: 200px !important;
    padding: 1rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
}

.card.bg-gradient .btn-light,
.card.bg-primary .btn-light {
    background: white !important;
    color: var(--primary-color) !important;
    border: 2px solid white !important;
}

.card.bg-gradient .btn-light:hover,
.card.bg-primary .btn-light:hover {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3) !important;
}

.card.bg-gradient .btn-outline-light,
.card.bg-primary .btn-outline-light {
    background: transparent !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
}

.card.bg-gradient .btn-outline-light:hover,
.card.bg-primary .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 2px solid white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2) !important;
}

/* Responsividade específica para call-to-action */
@media (max-width: 768px) {
    .card.bg-gradient .card-body,
    .card.bg-primary .card-body {
        padding: 2rem 1.5rem !important;
    }
    
    .card.bg-gradient h2,
    .card.bg-gradient h3,
    .card.bg-primary h2,
    .card.bg-primary h3 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .card.bg-gradient .lead,
    .card.bg-primary .lead {
        font-size: 1.1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .card.bg-gradient .btn,
    .card.bg-primary .btn {
        width: 100% !important;
        min-width: auto !important;
        margin: 0.3rem 0 !important;
        padding: 1rem !important;
        font-size: 1rem !important;
    }
    
    .card.bg-gradient .d-flex,
    .card.bg-primary .d-flex {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
}

@media (max-width: 480px) {
    .card.bg-gradient .card-body,
    .card.bg-primary .card-body {
        padding: 1.5rem 1rem !important;
    }
    
    .card.bg-gradient h2,
    .card.bg-gradient h3,
    .card.bg-primary h2,
    .card.bg-primary h3 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .card.bg-gradient .lead,
    .card.bg-primary .lead {
        font-size: 1rem !important;
        line-height: 1.4 !important;
    }
    
    .card.bg-gradient .btn,
    .card.bg-primary .btn {
        padding: 0.9rem !important;
        font-size: 0.95rem !important;
    }
}

/* Orientação paisagem em dispositivos móveis */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-banner {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .navbar {
        padding: 0.5rem 1rem;
    }
}

/* Modo escuro (preferência do sistema) */
@media (prefers-color-scheme: dark) {
    .card {
        background: #2d3748;
        color: #e2e8f0;
        border-color: rgba(255, 107, 53, 0.3);
    }
    
    .form-control {
        background: #4a5568;
        color: #e2e8f0;
        border-color: #718096;
    }
    
    .form-control:focus {
        background: #2d3748;
        border-color: var(--primary-color);
    }
}

/* Forçar fundo branco nos cards em dispositivos móveis */
@media (max-width: 768px) {
    .card {
        background: var(--text-light) !important;
        color: var(--text-dark) !important;
        border-color: rgba(255, 107, 53, 0.1) !important;
    }
    
    .form-control {
        background: var(--text-light) !important;
        color: var(--text-dark) !important;
        border-color: #e9ecef !important;
    }
    
    .form-control:focus {
        background: var(--text-light) !important;
        border-color: var(--primary-color) !important;
        color: var(--text-dark) !important;
    }
}

/* Redução de movimento (acessibilidade) */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-banner::before,
    .hero-banner::after {
        animation: none;
    }
    
    .float,
    .bounce,
    .pulse,
    .glow {
        animation: none;
    }
}

/* Alto contraste (acessibilidade) */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #fff;
    }
    
    .card {
        border: 2px solid #000;
    }
    
    .hero-banner {
        background: #000;
        color: #fff;
    }
}

/* Utilitários Modernos */

/* Texto */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }
.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }
.text-muted { color: #6c757d; }
.text-white { color: var(--text-light); }
.text-dark { color: var(--text-dark); }

/* Tamanhos de fonte */
.fs-1 { font-size: 2.5rem; }
.fs-2 { font-size: 2rem; }
.fs-3 { font-size: 1.75rem; }
.fs-4 { font-size: 1.5rem; }
.fs-5 { font-size: 1.25rem; }
.fs-6 { font-size: 1rem; }
.fs-small { font-size: 0.875rem; }
.fs-tiny { font-size: 0.75rem; }

/* Peso da fonte */
.fw-light { font-weight: 300; }
.fw-normal { font-weight: 400; }
.fw-medium { font-weight: 500; }
.fw-semibold { font-weight: 600; }
.fw-bold { font-weight: 700; }
.fw-black { font-weight: 900; }

/* Margens */
.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 1rem; }
.m-4 { margin: 1.5rem; }
.m-5 { margin: 3rem; }
.m-auto { margin: auto; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mt-auto { margin-top: auto; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mb-auto { margin-bottom: auto; }

.ms-0 { margin-left: 0; }
.ms-1 { margin-left: 0.25rem; }
.ms-2 { margin-left: 0.5rem; }
.ms-3 { margin-left: 1rem; }
.ms-4 { margin-left: 1.5rem; }
.ms-5 { margin-left: 3rem; }
.ms-auto { margin-left: auto; }

.me-0 { margin-right: 0; }
.me-1 { margin-right: 0.25rem; }
.me-2 { margin-right: 0.5rem; }
.me-3 { margin-right: 1rem; }
.me-4 { margin-right: 1.5rem; }
.me-5 { margin-right: 3rem; }
.me-auto { margin-right: auto; }

/* Padding */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 1rem; }
.pt-4 { padding-top: 1.5rem; }
.pt-5 { padding-top: 3rem; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 1rem; }
.pb-4 { padding-bottom: 1.5rem; }
.pb-5 { padding-bottom: 3rem; }

.ps-0 { padding-left: 0; }
.ps-1 { padding-left: 0.25rem; }
.ps-2 { padding-left: 0.5rem; }
.ps-3 { padding-left: 1rem; }
.ps-4 { padding-left: 1.5rem; }
.ps-5 { padding-left: 3rem; }

.pe-0 { padding-right: 0; }
.pe-1 { padding-right: 0.25rem; }
.pe-2 { padding-right: 0.5rem; }
.pe-3 { padding-right: 1rem; }
.pe-4 { padding-right: 1.5rem; }
.pe-5 { padding-right: 3rem; }

/* Display */
.d-none { display: none; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }
.d-grid { display: grid; }
.d-table { display: table; }

/* Flexbox */
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.justify-content-start { justify-content: flex-start; }
.justify-content-end { justify-content: flex-end; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-around { justify-content: space-around; }
.justify-content-evenly { justify-content: space-evenly; }
.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }
.align-items-center { align-items: center; }
.align-items-baseline { align-items: baseline; }
.align-items-stretch { align-items: stretch; }
.flex-grow-1 { flex-grow: 1; }
.flex-shrink-1 { flex-shrink: 1; }

/* Dimensões */
.w-25 { width: 25%; }
.w-50 { width: 50%; }
.w-75 { width: 75%; }
.w-100 { width: 100%; }
.w-auto { width: auto; }
.h-25 { height: 25%; }
.h-50 { height: 50%; }
.h-75 { height: 75%; }
.h-100 { height: 100%; }
.h-auto { height: auto; }
.mw-100 { max-width: 100%; }
.mh-100 { max-height: 100%; }
.min-vw-100 { min-width: 100vw; }
.min-vh-100 { min-height: 100vh; }
.vw-100 { width: 100vw; }
.vh-100 { height: 100vh; }

/* Posicionamento */
.position-static { position: static; }
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }
.position-sticky { position: sticky; }
.top-0 { top: 0; }
.top-50 { top: 50%; }
.top-100 { top: 100%; }
.bottom-0 { bottom: 0; }
.bottom-50 { bottom: 50%; }
.bottom-100 { bottom: 100%; }
.start-0 { left: 0; }
.start-50 { left: 50%; }
.start-100 { left: 100%; }
.end-0 { right: 0; }
.end-50 { right: 50%; }
.end-100 { right: 100%; }
.translate-middle { transform: translate(-50%, -50%); }
.translate-middle-x { transform: translateX(-50%); }
.translate-middle-y { transform: translateY(-50%); }

/* Bordas */
.border { border: 1px solid #dee2e6; }
.border-0 { border: 0; }
.border-top { border-top: 1px solid #dee2e6; }
.border-end { border-right: 1px solid #dee2e6; }
.border-bottom { border-bottom: 1px solid #dee2e6; }
.border-start { border-left: 1px solid #dee2e6; }
.border-primary { border-color: var(--primary-color); }
.border-secondary { border-color: var(--secondary-color); }
.border-success { border-color: var(--success-color); }
.border-danger { border-color: var(--danger-color); }
.border-warning { border-color: var(--warning-color); }
.border-info { border-color: var(--info-color); }
.border-light { border-color: #f8f9fa; }
.border-dark { border-color: #343a40; }
.border-white { border-color: #fff; }

/* Border radius */
.rounded { border-radius: var(--border-radius-sm); }
.rounded-0 { border-radius: 0; }
.rounded-1 { border-radius: var(--border-radius-sm); }
.rounded-2 { border-radius: var(--border-radius); }
.rounded-3 { border-radius: var(--border-radius-lg); }
.rounded-circle { border-radius: 50%; }
.rounded-pill { border-radius: 50rem; }
.rounded-top { border-top-left-radius: var(--border-radius-sm); border-top-right-radius: var(--border-radius-sm); }
.rounded-end { border-top-right-radius: var(--border-radius-sm); border-bottom-right-radius: var(--border-radius-sm); }
.rounded-bottom { border-bottom-left-radius: var(--border-radius-sm); border-bottom-right-radius: var(--border-radius-sm); }
.rounded-start { border-top-left-radius: var(--border-radius-sm); border-bottom-left-radius: var(--border-radius-sm); }

/* Sombras */
.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); }
.shadow { box-shadow: var(--box-shadow); }
.shadow-lg { box-shadow: var(--box-shadow-lg); }
.shadow-xl { box-shadow: var(--box-shadow-xl); }

/* Overflow */
.overflow-auto { overflow: auto; }
.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }
.overflow-scroll { overflow: scroll; }
.overflow-x-auto { overflow-x: auto; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-x-visible { overflow-x: visible; }
.overflow-x-scroll { overflow-x: scroll; }
.overflow-y-auto { overflow-y: auto; }
.overflow-y-hidden { overflow-y: hidden; }
.overflow-y-visible { overflow-y: visible; }
.overflow-y-scroll { overflow-y: scroll; }

/* Z-index */
.z-n1 { z-index: -1; }
.z-0 { z-index: 0; }
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-3 { z-index: 3; }

/* Visibilidade */
.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* Interação */
.user-select-all { user-select: all; }
.user-select-auto { user-select: auto; }
.user-select-none { user-select: none; }
.pe-none { pointer-events: none; }
.pe-auto { pointer-events: auto; }

/* Componentes especiais */
.loading-spinner {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 0.25em solid rgba(var(--primary-color-rgb), 0.25);
    border-right-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
}

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

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--border-radius-sm);
}

.tooltip-custom {
    position: relative;
    cursor: help;
}

.tooltip-custom::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.tooltip-custom:hover::before {
    opacity: 1;
}

.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: var(--border-radius-sm);
}

.badge-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.badge-secondary {
    background: var(--secondary-color);
    color: var(--text-light);
}

.badge-success {
    background: var(--success-color);
    color: var(--text-light);
}

.badge-danger {
    background: var(--danger-color);
    color: var(--text-light);
}

.badge-warning {
    background: var(--warning-color);
    color: var(--text-dark);
}

.badge-info {
    background: var(--info-color);
    color: var(--text-light);
}

.badge-light {
    background: #f8f9fa;
    color: var(--text-dark);
}

.badge-dark {
    background: #343a40;
    color: var(--text-light);
}

/* Gradientes */
.bg-gradient-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

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

.bg-gradient-rainbow {
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd23f, #ff6b35);
    background-size: 400% 400%;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsividade para utilitários */
@media (max-width: 768px) {
    .d-md-none { display: none; }
    .d-md-block { display: block; }
    .d-md-flex { display: flex; }
    .text-md-center { text-align: center; }
    .text-md-left { text-align: left; }
    .text-md-right { text-align: right; }
}

@media (max-width: 480px) {
    .d-sm-none { display: none; }
    .d-sm-block { display: block; }
    .d-sm-flex { display: flex; }
    .text-sm-center { text-align: center; }
    .text-sm-left { text-align: left; }
    .text-sm-right { text-align: right; }
    .fs-sm-1 { font-size: 1.8rem; }
    .fs-sm-2 { font-size: 1.5rem; }
    .fs-sm-3 { font-size: 1.3rem; }
    .fs-sm-4 { font-size: 1.1rem; }
    .fs-sm-5 { font-size: 1rem; }
    .fs-sm-6 { font-size: 0.9rem; }
}

/* Hero Confirmacao Styles */
.hero-confirmacao {
    background: linear-gradient(135deg, rgba(106, 90, 205, 0.9), rgba(72, 61, 139, 0.9));
    color: var(--text-light);
    text-align: center;
    padding: 0.5rem 0 !important;
    margin-bottom: 0.5rem !important;
    min-height: 60px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-confirmacao h1 {
    font-size: 1.8rem !important;
    margin-bottom: 0.4rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
}

.hero-confirmacao .lead {
    font-size: 1.1rem !important;
    margin-bottom: 0.3rem !important;
    line-height: 1.3 !important;
}

.hero-confirmacao p {
    font-size: 1rem !important;
    margin-bottom: 0.2rem !important;
    line-height: 1.3 !important;
}

/* Hero Content Styles */
.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-description {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-description .lead {
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    color: white;
}

.hero-final {
    text-align: center;
    font-size: 1.2rem;
    color: #ffd23f;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
     .hero-confirmacao {
          padding: 0.4rem 0 !important;
          min-height: 50px !important;
      }
      
      .hero-confirmacao h1 {
          font-size: 1.5rem !important;
          margin-bottom: 0.3rem !important;
      }
      
      .hero-confirmacao .lead {
          font-size: 1rem !important;
          margin-bottom: 0.2rem !important;
      }
      
      .hero-confirmacao p {
          font-size: 0.9rem !important;
          margin-bottom: 0.15rem !important;
      }
     
     .hero-description {
         padding: 1.5rem;
         margin-top: 1.5rem;
     }
     
     .hero-description p {
         font-size: 1rem;
         text-align: center;
     }
     
     .hero-description .lead {
         font-size: 1.2rem;
     }
 }
 
 @media (max-width: 480px) {
     .hero-confirmacao {
          padding: 0.3rem 0 !important;
          min-height: 40px !important;
      }
      
      .hero-confirmacao h1 {
          font-size: 1.3rem !important;
          margin-bottom: 0.25rem !important;
      }
      
      .hero-confirmacao .lead {
          font-size: 0.9rem !important;
          margin-bottom: 0.15rem !important;
      }
      
      .hero-confirmacao p {
          font-size: 0.8rem !important;
          margin-bottom: 0.1rem !important;
      }
 }
 
 /* Botão Roxo Personalizado */
 .btn-purple {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     border: none;
     color: white;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
 }
 
 .btn-purple:hover {
     background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
     color: white;
 }
 
 .btn-purple:active {
     transform: translateY(0);
     box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
 }
 
 /* Correção de espaçamento e posicionamento */
 @media (max-width: 768px) {
     .hero-banner {
         min-height: 100vh;
         margin-bottom: 4rem;
         padding-bottom: 3rem;
     }
     
     .hero-banner .mt-4 {
         margin-top: 2rem !important;
         margin-bottom: 2rem;
     }
 }
 
 /* Garantir que as seções seguintes não sobreponham */
.hero-banner + section,
.hero-banner + .container {
    margin-top: 0;
    padding-top: 2rem;
    position: relative;
    z-index: 10;
}

/* Estilos compactos para seções hero das outras páginas */
.hero-aniversariantes,
.info-hero,
.mural-hero,
.galeria-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    color: white !important;
    padding: 0.5rem 0 !important;
    margin-bottom: 0.5rem !important;
    text-align: center !important;
    min-height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-aniversariantes h1,
.info-hero h1,
.mural-hero h1,
.galeria-hero h1 {
    font-size: 1.8rem !important;
    margin-bottom: 0.4rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
}

.hero-aniversariantes .lead,
.info-hero .lead,
.mural-hero .lead,
.galeria-hero .lead {
    font-size: 1.1rem !important;
    margin-bottom: 0.3rem !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
}

.hero-aniversariantes p,
.info-hero p,
.mural-hero p,
.galeria-hero p {
    font-size: 1rem !important;
    margin-bottom: 0.2rem !important;
    line-height: 1.3 !important;
}

/* Responsivo para tablet */
@media (max-width: 768px) {
    .hero-aniversariantes,
    .info-hero,
    .mural-hero,
    .galeria-hero {
        padding: 0.4rem 0 !important;
        margin-bottom: 0.4rem !important;
        min-height: 50px !important;
    }
    
    .hero-aniversariantes h1,
    .info-hero h1,
    .mural-hero h1,
    .galeria-hero h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0.3rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-aniversariantes .lead,
    .info-hero .lead,
    .mural-hero .lead,
    .galeria-hero .lead {
        font-size: 1rem !important;
        margin-bottom: 0.2rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-aniversariantes p,
    .info-hero p,
    .mural-hero p,
    .galeria-hero p {
        font-size: 0.9rem !important;
        margin-bottom: 0.15rem !important;
        line-height: 1.3 !important;
    }
}

/* Responsivo para mobile */
@media (max-width: 480px) {
    .hero-aniversariantes,
    .info-hero,
    .mural-hero,
    .galeria-hero {
        padding: 0.3rem 0 !important;
        margin-bottom: 0.3rem !important;
        min-height: 40px !important;
    }
    
    .hero-aniversariantes h1,
    .info-hero h1,
    .mural-hero h1,
    .galeria-hero h1 {
        font-size: 1.3rem !important;
        margin-bottom: 0.25rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-aniversariantes .lead,
    .info-hero .lead,
    .mural-hero .lead,
    .galeria-hero .lead {
        font-size: 0.9rem !important;
        margin-bottom: 0.15rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-aniversariantes p,
    .info-hero p,
    .mural-hero p,
    .galeria-hero p {
        font-size: 0.8rem !important;
        margin-bottom: 0.1rem !important;
        line-height: 1.3 !important;
    }
}