/* HERO PADRÃO GLOBAL - PRIORIDADE MÁXIMA */
.hero-section,
.main-hero {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 100vh !important;
  padding: 0 !important;
  overflow: hidden !important;
}
.hero-img {
  object-fit: cover !important;
  object-position: center 0% !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

/* Estilos Gerais */
:root {
    --color-primary: #b0cddf;
    --color-secondary: #8ab4d3;
    --color-accent: #5c9bc4;
    --color-text: #333333;
    --color-background: #ffffff;
    --color-gray: #f5f5f5;
    --color-white: #ffffff;
    --color-black: #000000;
    --transition: all 0.3s ease;
}

/* Regra de teste para garantir que o CSS custom (style.css) esteja sendo carregado */
body { background: #fafafa; }

body {
    font-family: 'Lato', sans-serif;
    color: var(--color-black);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Scheherazade New', serif;
    margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
    
    overflow: hidden;
}

.hero-image {
    filter: brightness(0.8);
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

/* Countdown */
.countdown-container {
    margin: 2rem 0;
}

.countdown-item {
    display: inline-block;
    text-align: center;
    padding: 1rem;
    margin: 0 0.5rem;
    min-width: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    transition: transform 0.2s ease;
}

.countdown-label {
    display: block;
    font-size: 1rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cards */
.card {
    border: none;
    transition: var(--transition);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Gallery */
.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.gallery-item img {
    transition: var(--transition);
}

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

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: darken(var(--color-primary), 10%);
    border-color: darken(var(--color-primary), 10%);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline-primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #f8fafd 0%, #e9f1fa 100%);
    border-top: 1px solid #e0e8f0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

/* Footer compacto */
.footer-content {
    padding: 1.2rem 0 0.7rem;
    position: relative;
}
.footer-hearts {
    margin-bottom: 0.5rem;
}
.footer-title {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}
.footer-subtitle {
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
}
.footer-links {
    margin-bottom: 0.7rem;
    gap: 0.7rem;
}
.footer-divider {
    margin: 0.7rem 0 !important;
}
.footer-copyright {
    font-size: 0.85rem;
    margin-bottom: 0.1rem !important;
}
.footer-love {
    font-size: 0.8rem;
}

.footer-hearts i {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin: 0 0.5rem;
    animation: pulse 2s infinite;
}

.footer-hearts i:nth-child(2) {
    animation-delay: 0.3s;
}

.footer-hearts i:nth-child(3) {
    animation-delay: 0.6s;
}

.footer-title {
    font-family: 'Scheherazade New', serif;
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.footer-subtitle {
    color: var(--color-text);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(176, 205, 223, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    color: var(--color-primary);
    background: rgba(176, 205, 223, 0.1);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    text-decoration: none;
}

.footer-link i {
    font-size: 0.9rem;
    color: var(--color-primary);
}

.footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    gap: 1rem;
}

.divider-line {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.divider-icon {
    color: var(--color-primary);
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

.footer-copyright {
    color: var(--color-text);
    font-size: 0.95rem;
    margin-bottom: 0;
    opacity: 0.8;
}

.footer-love {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 500;
}

.footer-love i {
    color: #e74c3c;
    animation: pulse 2s infinite;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {

        min-height: 100vh;
    }

    .countdown-number {
        font-size: 2.5rem;
    }

    .card-img-top {
        height: 180px;
    }
    
    /* Footer responsivo */
    .footer-content {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-title {
        font-size: 1.6rem;
    }
    
    .footer-subtitle {
        font-size: 1rem;
    }
    
    .footer-links {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .footer-title {
        font-size: 1.4rem;
    }
    
    .footer-subtitle {
        font-size: 0.9rem;
    }
    
    .footer-links {
        gap: 0.8rem;
    }
    
    .footer-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .footer-love {
        font-size: 0.8rem;
    }
}

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

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

/* Utilitários */
.text-primary {
    color: var(--color-primary) !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.shadow-custom {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.rounded-custom {
    border-radius: 15px;
}

/* Formulários */
.form-control {
    border-radius: 30px;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--color-gray);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(146, 168, 209, 0.25);
}

/* RSVP Form */
.rsvp-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--color-primary);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
}

.timeline-content {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--color-gray);
    border-top: 4px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navbar */
.navbar {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: var(--font-primary);
    color: var(--color-primary) !important;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--color-text) !important;
    font-family: var(--font-secondary);
    padding: 0.5rem 1rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.nav-link i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.nav-link:hover {
    color: var(--color-primary) !important;
}

.navbar-toggler {
    border-color: var(--color-primary);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(176, 205, 223, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
} 

/* ===== Estilos Específicos da Lista de Presentes ===== */
/* ===== Ajustes para cards menores e layout dos quadrados ===== */
.gifts-header-card {
    max-width: 900px;
    margin: 0 auto 36px auto;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    padding: 48px 40px 32px 40px;
    text-align: center;
}
.gifts-search-box {
    max-width: 400px;
    margin: 0 auto 30px auto;
    display: flex;
    align-items: center;
    gap: 10px;
}
.gifts-search-box input[type="text"] {
    flex: 1;
    padding: 10px 16px;
    border-radius: 20px;
    border: 1px solid #d0d0d0;
    font-size: 1.1rem;
    outline: none;
    transition: border 0.2s;
}
.gifts-search-box input[type="text"]:focus {
    border: 1.5px solid var(--color-primary);
}
.gifts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 32px 48px 32px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
}
.gift-card {
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.gift-image {
    height: 170px;
}
.gift-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.gift-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.gift-image {
    height: 250px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    position: relative;
    overflow: hidden;
}
.gift-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gift-card:hover .gift-image img {
    transform: scale(1.1);
}
.gift-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.gift-title {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}
.gift-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 20px;
}
.gift-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}
.gift-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.btn-gift {
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}
.btn-primary-gift {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
}
.btn-primary-gift:hover {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: white;
    transform: translateY(-2px);
}
.btn-outline-gift {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}
.btn-outline-gift:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-2px);
}
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #666;
}
.empty-state i {
    font-size: 4rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}
.empty-state h3 {
    font-family: var(--font-primary);
    margin-bottom: 15px;
}
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    .gift-card {
        margin-bottom: 30px;
    }
    .gift-actions {
        flex-direction: column;
    }
    .btn-gift {
        justify-content: center;
    }
    .gifts-header-card, .gifts-container {
        border-radius: 12px;
        padding: 18px 8px;
    }
    .gift-card {
        max-width: 100%;
    }
    .gift-image {
        height: 120px;
    }
} 

/* ===== Ajustes de layout aprimorados ===== */
.gifts-header-card {
    max-width: 900px;
    margin: 0 auto 36px auto;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    padding: 48px 40px 32px 40px;
    text-align: center;
}
.gifts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 32px 48px 32px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
}
.gift-card {
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.row#giftsList {
    row-gap: 24px;
    column-gap: 0;
}
@media (min-width: 992px) {
    .col-lg-4 {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
}
@media (max-width: 991px) {
    .gifts-header-card {
        max-width: 98vw;
        padding: 24px 0 18px 0;
        border-radius: 0;
    }
    .gifts-container {
        max-width: 99vw;
        padding: 18px 4px 24px 4px;
        border-radius: 14px;
    }
    .row#giftsList {
        row-gap: 24px;
    }
} 

/* ===== Ajustes para header sem quadrado ===== */
.gifts-header-card {
    max-width: 900px;
    margin: 0 auto 36px auto;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 48px 0 32px 0;
    text-align: center;
}
@media (max-width: 991px) {
    .gifts-header-card {
        max-width: 98vw;
        padding: 24px 0 18px 0;
        border-radius: 0;
    }
} 

/* Estilos específicos para a página Story */
.story-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

/* Hero Section para Story */
.story-hero {
    background-attachment: fixed !important;
    overflow: hidden;
}

.story-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(176, 205, 223, 0.4) 100%) !important;
}

.hero-content {
    animation: fadeInUp 1.5s ease-out;
}

.hero-icon {
    font-size: 3rem;
    color: var(--color-primary);
    animation: pulse 2s infinite;
}

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

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    animation: fadeIn 2s ease-out 0.5s both;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    animation: expandLine 1.5s ease-out 1s both;
}

.divider-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    animation: bounce 2s infinite 1.5s;
}

.hero-date {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.date-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-white);
}

.hero-scroll {
    margin-top: 3rem;
    animation: fadeIn 1s ease-out 1.5s both;
}

.scroll-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition);
    padding: 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scroll-btn:hover {
    color: var(--color-primary);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-icon {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

/* Elementos decorativos */
.hero-decoration {
    position: absolute;
    pointer-events: none;
}

.hero-hearts {
    top: 10%;
    left: 10%;
}

.hero-flowers {
    top: 20%;
    right: 15%;
}

.heart {
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    position: absolute;
    transform: rotate(45deg);
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
}

.heart::before,
.heart::after {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    border-radius: 50%;
    position: absolute;
}

.heart::before {
    top: -10px;
    left: 0;
}

.heart::after {
    top: 0;
    left: -10px;
}

.heart:nth-child(1) {
    animation-delay: 0s;
    top: 0;
    left: 0;
}

.heart:nth-child(2) {
    animation-delay: 2s;
    top: 50px;
    left: 100px;
}

.heart:nth-child(3) {
    animation-delay: 4s;
    top: 100px;
    left: 50px;
}

.flower {
    width: 30px;
    height: 30px;
    background: var(--color-secondary);
    border-radius: 50%;
    position: absolute;
    animation: rotate 8s linear infinite;
    opacity: 0.4;
}

.flower::before {
    content: '';
    width: 30px;
    height: 30px;
    background: var(--color-secondary);
    border-radius: 50%;
    position: absolute;
    top: -15px;
    left: 15px;
}

.flower:nth-child(1) {
    animation-delay: 0s;
    top: 0;
    right: 0;
}

.flower:nth-child(2) {
    animation-delay: 2.5s;
    top: 80px;
    right: 80px;
}

.flower:nth-child(3) {
    animation-delay: 5s;
    top: 160px;
    right: 40px;
}

/* Partículas flutuantes */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: floatParticle 10s linear infinite;
    opacity: 0.3;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 40%;
    left: 70%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    top: 70%;
    left: 60%;
    animation-delay: 8s;
}

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

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

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(45deg);
    }
    50% {
        transform: translateY(-20px) rotate(45deg);
    }
}

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

@keyframes floatParticle {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade para Hero */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-icon {
        font-size: 2rem;
    }
    
    .divider-line {
        width: 40px;
    }
    
    .hero-date {
        padding: 0.6rem 1.5rem;
    }
    
    .date-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-divider {
        gap: 0.5rem;
    }
    
    .divider-line {
        width: 30px;
    }
    
    .divider-icon {
        font-size: 1.2rem;
    }
} 

/* Estilos para a seção Story */
.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.story-item {
    position: relative;
    padding: 3rem 0;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    transition: var(--transition);
    border: 1px solid rgba(176, 205, 223, 0.2);
}

.story-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-item:last-child {
    margin-bottom: 0;
}

.story-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.story-image {
    transition: var(--transition);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

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

.story-content {
    padding: 2rem;
}

.story-title {
    color: var(--color-primary);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

.story-text {
    line-height: 1.8;
}

.story-text p {
    margin-bottom: 1.2rem;
    color: var(--color-text);
    font-size: 1.1rem;
}

.story-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.story-final {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.story-final .story-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
}

.final-message {
    background: var(--color-white);
    color: var(--color-text);
    position: relative;
    border-top: 1px solid rgba(176, 205, 223, 0.3);
}

.final-message h2 {
    color: var(--color-primary);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Responsividade para Story */
@media (max-width: 768px) {
    .story-item {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .story-content {
        padding: 1.5rem 1rem;
    }
    
    .story-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .story-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .story-image {
        height: 300px;
    }
    
    .story-text p {
        font-size: 1rem;
    }
    
    .story-text .lead {
        font-size: 1.2rem;
    }
    
    .final-message h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .story-item {
        padding: 1.5rem 0.5rem;
    }
    
    .story-content {
        padding: 1rem 0.5rem;
    }
    
    .story-title {
        font-size: 1.6rem;
    }
    
    .story-image {
        height: 250px;
    }
} 

/* Hero Section para Página Principal */
.main-hero {
    background-attachment: fixed !important;
    overflow: hidden;
}

.main-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(176, 205, 223, 0.4) 100%) !important;
}

.main-hero .hero-content {
    animation: fadeInUp 1.5s ease-out;
}

.main-hero .hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0,0,0,0.5);
    margin-bottom: 2rem;
}

.main-hero .title-line {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.main-hero .title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.main-hero .title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.main-hero .hero-subtitle {
    font-size: 1.6rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    animation: fadeIn 2s ease-out 0.5s both;
}

/* Countdown específico para o hero principal */
.hero-countdown {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.countdown-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-countdown .countdown-container {
    margin: 1rem 0;
}

.hero-countdown .countdown-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    margin: 0 0.5rem;
    min-width: 100px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-countdown .countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.hero-countdown .countdown-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    transition: transform 0.2s ease;
}

.hero-countdown .countdown-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.hero-countdown .countdown-item:hover .countdown-number {
    transform: scale(1.1);
}

/* Botão de ação principal */
.hero-action {
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.hero-action .btn {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hero-action .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.5s;
}

.hero-action .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hero-action .btn:hover::before {
    left: 100%;
}

/* Responsividade para o hero principal */
@media (max-width: 768px) {
    .main-hero .hero-title {
        font-size: 3rem;
    }
    
    .main-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-countdown .countdown-item {
        padding: 1rem 0.5rem;
        margin: 0 0.25rem;
        min-width: 80px;
    }
    
    .hero-countdown .countdown-number {
        font-size: 2rem;
    }
    
    .hero-countdown .countdown-label {
        font-size: 0.8rem;
    }
    
    .countdown-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .main-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .main-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-countdown .countdown-container .row {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .hero-countdown .countdown-item {
        padding: 0.8rem 0.3rem;
        min-width: 70px;
    }
    
    .hero-countdown .countdown-number {
        font-size: 1.6rem;
    }
    
    .hero-countdown .countdown-label {
        font-size: 0.7rem;
    }
    
    .countdown-title {
        font-size: 1rem;
    }
    
    .hero-action .btn {
        font-size: 0.9rem;
        padding: 0.8rem 2rem;
    }
} 

/* Estilos para a seção de Local */
.location-info {
    background: rgba(255, 255, 255, 0.8);
    padding: 0.6rem;
    border-radius: 10px;
    border-left: 2px solid var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    margin-bottom: 0.6rem;
}

.location-info:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.location-title {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
}

.location-title i {
    font-size: 1rem;
    margin-right: 0.3rem;
}

.location-address {
    color: var(--color-text);
    font-size: 0.8rem;
    line-height: 1.3;
    margin-bottom: 0;
}

.event-details {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.6rem;
    border-radius: 10px;
    margin-top: 0.8rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.2rem;
    font-size: 0.8rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item i {
    font-size: 0.9rem;
    margin-right: 0.3rem;
    color: rgba(255, 255, 255, 0.8);
}

.location-image-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.location-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Estilos para a Galeria Melhorada */
.gallery-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(176, 205, 223, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--color-white);
    transform: scale(0);
    transition: var(--transition);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover .gallery-overlay i {
    transform: scale(1);
}

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

/* Responsividade para as seções */
@media (max-width: 768px) {
    .location-info {
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .location-title {
        font-size: 0.85rem;
    }
    
    .location-address {
        font-size: 0.75rem;
    }
    
    .event-details {
        padding: 0.5rem;
    }
    
    .detail-item {
        font-size: 0.75rem;
    }
    
    .location-image {
        height: 250px;
    }
    
    .gallery-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .location-info {
        padding: 0.8rem;
    }
    
    .location-title {
        font-size: 1rem;
    }
    
    .location-address {
        font-size: 0.9rem;
    }
    
    .event-details {
        padding: 0.8rem;
    }
    
    .detail-item {
        font-size: 0.9rem;
    }
    
    .gallery-image {
        height: 180px;
    }
} 

/* Estilos específicos para a página de Localização */
.location-hero {
    background-attachment: fixed !important;
    overflow: hidden;
}

.location-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(176, 205, 223, 0.4) 100%) !important;
}

.location-hero .hero-content {
    animation: fadeInUp 1.5s ease-out;
}

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

.location-hero .title-line {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.location-hero .title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.location-hero .hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    animation: fadeIn 2s ease-out 0.5s both;
}

.location-hero .hero-icon {
    font-size: 3rem;
    color: var(--color-primary);
    animation: pulse 2s infinite;
}

/* Seção de Localizações */
.locations-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.section-title {
    color: var(--color-primary);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

.location-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(176, 205, 223, 0.2);
    transition: var(--transition);
    margin-bottom: 3rem;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.location-card:last-child {
    margin-bottom: 0;
}

.location-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.location-icon {
    font-size: 3rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 1.5rem;
}

.location-title {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.location-address {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
}

.location-address p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    line-height: 1.6;
    text-align: center;
}

.location-detail {
    color: var(--color-accent) !important;
    font-size: 1.2rem !important;
    margin-top: 1rem !important;
}

.location-actions {
    text-align: center;
    width: 100%;
}

.location-actions .btn {
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
}

.location-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Seção de Mapas */
.maps-section {
    background: var(--color-white);
}

.map-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(176, 205, 223, 0.2);
    transition: var(--transition);
    height: 100%;
}

.map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.map-title {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-title i {
    font-size: 1.8rem;
    margin-right: 0.5rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 15px;
}



/* Responsividade para Localização */
@media (max-width: 768px) {
    .location-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .location-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .location-hero .hero-icon {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .location-card {
        padding: 2rem 1.5rem;
    }
    
    .location-title {
        font-size: 1.6rem;
    }
    
    .location-address p {
        font-size: 1rem;
    }
    
    .location-icon {
        font-size: 2.5rem;
    }
    
    .map-card {
        padding: 1.5rem;
    }
    
    .map-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .location-hero .hero-title {
        font-size: 2rem;
    }
    
    .location-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .location-card {
        padding: 1.5rem 1rem;
    }
    
    .location-title {
        font-size: 1.4rem;
    }
    
    .location-address p {
        font-size: 0.9rem;
    }
    
    .location-icon {
        font-size: 2rem;
    }
    
    .map-card {
        padding: 1rem;
    }
    
    .map-title {
        font-size: 1.2rem;
    }
    
    .location-actions .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
} 

/* Card de Local da Celebração na Home - NOVO DESIGN */
.celebration-card {
    background: linear-gradient(135deg, #f8fafd 60%, #e9f1fa 100%);
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(80,120,180,0.13);
    overflow: hidden;
    margin-bottom: 2.5rem;
    min-height: 370px;
    border: 1.5px solid #e0e8f0;
}
.celebration-img-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #fff;
}
.celebration-image-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 280px;
    padding: 1.2rem 0 1.2rem 1.2rem;
}
.celebration-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(80,120,180,0.10);
    border: 2.5px solid #e0e8f0;
}
.celebration-info-col {
    background: linear-gradient(135deg, #fafdff 80%, #e9f1fa 100%);
    padding: 2.2rem 2rem 2.2rem 2rem;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.celebration-info-col h2 { color: var(--color-text) !important; font-weight: 500 !important; }
.location-info {
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
    box-shadow: 0 2px 8px rgba(80,120,180,0.07);
    padding: 1.1rem 1.2rem;
    margin-bottom: 1.2rem;
    transition: var(--transition);
}
.location-title {
    color: var(--color-primary);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.location-title i {
    font-size: 1.4rem;
    opacity: 0.7;
}
.location-address {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
}
.event-details {
    background: #e9f1fa;
    color: var(--color-primary);
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    box-shadow: 0 2px 8px rgba(80,120,180,0.07);
}
.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}
.detail-item i {
    font-size: 1.1rem;
    color: var(--color-primary);
    opacity: 0.7;
}
.celebration-info-col .btn {
    background: var(--color-primary);
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 0.9rem 2.2rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 16px rgba(80,120,180,0.10);
    border: none;
    transition: var(--transition);
}
.celebration-info-col .btn:hover {
    background: var(--color-secondary);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 991px) {
    .celebration-card {
        flex-direction: column !important;
        min-height: unset;
    }
    .celebration-img-col, .celebration-info-col {
        min-height: unset;
        padding: 0.8rem 0;
    }
    .celebration-image {
        height: 200px;
    }
    .celebration-info-col {
        padding: 1.2rem 1rem;
    }
}
@media (max-width: 576px) {
    .celebration-info-col {
        padding: 1rem 0.5rem;
    }
    .celebration-image {
        height: 120px;
    }
    .celebration-image-container {
        min-height: 80px;
    }
    .celebration-info-col h2 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
    .location-title {
        font-size: 0.95rem;
    }
    .location-address {
        font-size: 0.85rem;
    }
    .event-details {
        font-size: 0.85rem;
        padding: 0.6rem 0.7rem;
    }
    .celebration-info-col .btn {
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
    }
} 

/* ===== Estilos para presentes menores ===== */
.gift-card {
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.gift-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.gift-image {
    height: 180px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    position: relative;
    overflow: hidden;
}

.gift-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gift-card:hover .gift-image img {
    transform: scale(1.05);
}

.gift-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gift-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
}

.gift-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.gift-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.btn-gift {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    cursor: pointer;
}

.btn-primary-gift {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
}

.btn-primary-gift:hover {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: white;
    transform: translateY(-2px);
}

/* Responsividade para presentes menores */
@media (max-width: 768px) {
    .gift-card {
        margin-bottom: 20px;
    }
    
    .gift-image {
        height: 140px;
    }
    
    .gift-content {
        padding: 12px;
    }
    
    .gift-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .gift-price {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .btn-gift {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .gift-image {
        height: 120px;
    }
    
    .gift-content {
        padding: 10px;
    }
    
    .gift-title {
        font-size: 0.95rem;
    }
    
    .gift-price {
        font-size: 1.1rem;
    }
}

/* HERO RESPONSIVO */
@media (min-width: 992px) {
  .hero-section, .main-hero, .location-hero, .story-hero {
    height: auto !important;
    min-height: unset !important;
    padding-top: 120px !important;
    padding-bottom: 40px !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 1400px) {
  .hero-decoration, .hero-particles {
    opacity: 0.2;
    transform: scale(0.5);
    pointer-events: none;
  }
}

@media (max-width: 991px) {
  .hero-section,
  .main-hero,
  .location-hero,
  .story-hero {
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    min-height: 80vh !important;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .hero-content {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .hero-decoration, .hero-particles {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hero-section,
  .main-hero,
  .location-hero,
  .story-hero {
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    min-height: 75vh !important;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .hero-content {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .hero-decoration, .hero-particles {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .hero-section,
  .main-hero {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 100vh !important;
  }
  .hero-img {
    object-position: center -10% !important;
  }
  .hero-section,
  .main-hero,
  .location-hero,
  .story-hero {
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    min-height: 70vh !important;
    padding-top: 60px !important;
    padding-bottom: 20px !important;
  }
  .hero-title {
    font-size: 2rem !important;
  }
  .hero-subtitle {
    font-size: 1rem !important;
  }
  .hero-content {
    padding: 0.5rem 0.2rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px !important;
  }
  body {
    padding: 0 !important;
    margin: 0 !important;
  }
  .container {
    padding-left: 8px !important;
    padding-right: 8px !important;
    max-width: 100vw !important;
  }
  .hero-section,
  .main-hero,
  .location-hero,
  .story-hero {
    padding-top: 60px !important;
    padding-bottom: 20px !important;
    min-height: 60vh !important;
    background-position: center 25% !important;
    background-size: cover !important;
  }
  .hero-title {
    font-size: 1.5rem !important;
    margin-bottom: 0.7rem !important;
  }
  .hero-subtitle {
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .hero-content {
    padding: 0.5rem 0.2rem !important;
  }
  .hero-countdown .countdown-item {
    min-width: 60px !important;
    padding: 0.5rem !important;
    margin: 0 0.2rem !important;
  }
  .countdown-number {
    font-size: 1.3rem !important;
  }
  .countdown-label {
    font-size: 0.7rem !important;
  }
  .hero-action .btn,
  .btn,
  .btn-primary,
  .btn-lg {
    font-size: 1rem !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 20px !important;
  }
  .hero-date {
    font-size: 0.9rem !important;
    margin-bottom: 0.7rem !important;
  }
  .gift-preview {
    padding: 1.2rem 0.5rem !important;
  }
  .gift-preview h3 {
    font-size: 1.1rem !important;
    margin-bottom: 0.7rem !important;
  }
  .gift-preview p,
  .gift-preview .lead {
    font-size: 0.95rem !important;
    margin-bottom: 0.7rem !important;
  }
  .gift-preview .btn {
    font-size: 1rem !important;
    padding: 0.5rem 1.2rem !important;
  }
  .celebration-card {
    flex-direction: column !important;
    gap: 1.2rem !important;
  }
  .celebration-img-col,
  .celebration-info-col {
    width: 100% !important;
    padding: 0 !important;
  }
  .celebration-image {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 10px !important;
  }
  .location-info,
  .event-details {
    font-size: 0.95rem !important;
    margin-bottom: 0.7rem !important;
  }
  .footer-content {
    padding: 1rem 0 0.5rem !important;
  }
  .footer-title {
    font-size: 1.1rem !important;
  }
  .footer-subtitle {
    font-size: 0.9rem !important;
  }
  .footer-links {
    gap: 0.5rem !important;
  }
  .footer-link {
    font-size: 0.85rem !important;
    padding: 0.3rem 0.6rem !important;
  }
  .footer-copyright {
    font-size: 0.8rem !important;
  }
  .footer-love {
    font-size: 0.75rem !important;
  }
  .img-fluid, img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
  }
  h2, h3, h4 {
    font-size: 1.1rem !important;
    margin-bottom: 0.7rem !important;
  }
  .py-5 {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
  .mb-4, .mb-5 {
    margin-bottom: 0.7rem !important;
  }
  .lead {
    font-size: 1rem !important;
  }
}