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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: #000;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 72, 47, 0.3) 0%, rgba(17, 72, 47, 0.1) 30%, rgba(0,0,0,0.5) 100%);
    /* background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%); */
    pointer-events: none;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 72, 47, 0.3) 0%, rgba(17, 72, 47, 0.1) 30%, rgba(0,0,0,0.5) 100%);
    /* background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%); */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 80px;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 10;
}

.welcome-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.9;
    color: #11482f;
}

.wedding-info {
    text-align: center;
    margin-bottom: 30px;
}

.wedding-subtitle {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.9;
    animation: fadeInUp 1.5s ease-out 0.2s both;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1.5s ease-out 0.4s both;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bride-name {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    color: #ffffff;
}

.and-symbol {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    opacity: 0.9;
    color: #ffffff;
}

.groom-name {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
}

.wedding-date {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    opacity: 0.95;
    color: #fff;
    animation: fadeInUp 1.5s ease-out 0.6s both;
}

.wedding-year {
    color: #13774a;
}


.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mouse-icon {
    width: 25px;
    height: 40px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    gap: 3px;
    animation: fadeInUp 1.5s ease-out 0.5s both;
}

.scroll-arrows i {
    font-size: 1rem;
    opacity: 0.8;
}

.footer {
    background: linear-gradient(135deg, #11482f 0%, #13774a 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.footer-message {
    max-width: 700px;
    margin: 0 auto;
}

.footer-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    margin-bottom: 30px;
}

.footer-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.footer-signature {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    margin-top: 40px;
}

.website-credit {
    margin-top: 40px;
    font-size: 14px;
    opacity: 0.7;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    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 scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

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

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(5deg);
    }
    66% {
        transform: translateY(5px) rotate(-3deg);
    }
}

/* Story Section */
.story {
    background: white;
    padding: 80px 0;
}

.story-content {
    margin-bottom: 30px;
}

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

.story h1 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #11482f;
    line-height: 1.1;
}

.bible-quote {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
    text-align: justify;
}

.bible-reference {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #666;
    font-style: italic;
}

.photo-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.photo-item {
    position: relative;
    overflow: hidden;
    
}

.photo-item.large-vertical {
    grid-row: span 2;
    aspect-ratio: 3/4;
}

.photo-item.small-horizontal {
    aspect-ratio: 4/3;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.photo-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 72, 47, 0.3) 0%, rgba(10, 45, 29, 0.1) 70%, rgba(0,0,0,0.7) 100%);
    /* background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 0%, transparent 100%);   */
    pointer-events: none;
    z-index: 1;
}

/* Couple Section */
.couple {
    background: #F3F3F3;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.couple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('../images/newflowers.png') center/cover,
        linear-gradient(to top, rgba(17, 72, 47, 0.3), rgba(17, 72, 47, 0.1));
    background-blend-mode: overlay;
    opacity: 0.4;
    z-index: 1;
}

.couple .container {
    position: relative;
    z-index: 2;
}

.couple-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #11482f;
}

.bride, .groom {
    margin-bottom: 40px;
}

.name {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #11482f;
}

.surname {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #666;
    font-family: 'Josefin Sans', sans-serif;
}

.couple p {
    margin-bottom: 5px;
    color: #666;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 18px;
}

hr {
    border: none;
    height: 1px;
    background: #11482f;
    margin: 40px auto;
    max-width: 200px;
}

/* Buttons */
.btn {
    background: #11482f;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    border-radius: 50px;
}

.btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn.secondary {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}

.btn.secondary:hover {
    background: #000;
    color: white;
}

/* Event Details Section */
.event-details {
    background: white;
    color: #333;
    padding: 80px 0;
}

.heart-separator {
    text-align: center;
    margin-bottom: 40px;
}

.heart-separator i {
    font-size: 2rem;
    color: #11482f;
    opacity: 0.8;
}

.invitation-text {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.invitation-text p {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.invitation-text strong {
    font-weight: 600;
    color: #000;
}

.ceremony-card {
    /* background: #18251f; */
    background: linear-gradient(135deg, #11482f 0%, #13774a 100%);
    color: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}



.date-info {
    text-align: center;
    margin-bottom: 30px;
}

.date-info h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.date-info h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
}

.separator {
    border: none;
    height: 1px;
    background: white;
    margin: 30px auto;
    max-width: 200px;
    opacity: 0.8;
}



.event-info {
    text-align: center;
}

.event-info h4 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-align: center;
}

.time {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    justify-content: center;
}

.location i {
    color: #f8b500;
    font-size: 1.2rem;
}

.event-info .btn {
    margin-bottom: 30px;
}

.btn-danger {
    background: #a01919;
    color: white;
}

/* RSVP Section */
.rsvp {
    background: #f3f3f3;
    padding: 80px 0;
    text-align: center;
}

.rsvp h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.rsvp p {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 10px;
}

.rsvp strong {
    color: #13774a;
    font-weight: 600;
    font-size: 1.4rem;

}

.rsvp-form {
    max-width: 500px;
    margin: 10px auto;
}

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

.contact-info {
    max-width: 50px;
    font-size: 0.6rem;
    color: #a01919;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 1rem;
    border-radius: 5px;
}

/* Congratulations Section */
.congratulations {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.congratulations h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.congratulations p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.congrats-form {
    max-width: 600px;
    margin: 0 auto 30px;
}

.congrats-form textarea {
    width: 100%;
    padding: 20px;
    border: 1px solid #ddd;
    font-size: 1rem;
    border-radius: 5px;
    resize: vertical;
    font-family: inherit;
}

/* Gift Section */
.gift {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.gift-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #11482f;
}

.gift h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #11482f;
}

.gift p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
}

.gift-list {
    margin: 40px 0;
    text-align: left;
}

.gift-list h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #11482f;
    text-align: center;
}

.gift-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gift-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.gift-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #11482f;
    font-family: 'Josefin Sans', sans-serif;
}

.gift-description {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.gift-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 5px;
}

.gift-store {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.gift-item .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

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

/* Countdown Section */
.countdown {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.countdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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="%2311482f" opacity="0.03"/></svg>') repeat;
    pointer-events: none;
}

.countdown-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(17, 72, 47, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-text h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #11482f;
    background: linear-gradient(135deg, #11482f, #1a5a3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-text p {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 50px;
    font-weight: 300;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.countdown-item {
    background: linear-gradient(135deg, #11482f, #1a5a3a);
    color: white;
    padding: 25px 20px;
    min-width: 120px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(17, 72, 47, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.countdown-item::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 ease;
}

.countdown-item:hover::before {
    left: 100%;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(17, 72, 47, 0.4);
}

.countdown-item .number {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-item .label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.countdown-divider {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #11482f;
    margin: 0 5px;
    animation: pulse 2s infinite;
}

.countdown-footer {
    text-align: center;
    margin-top: 40px;
}

.heart-beat {
    margin-bottom: 20px;
}

.heart-beat i {
    font-size: 2.5rem;
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.countdown-footer p {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: #11482f;
    font-weight: 400;
    margin: 0;
}

.play-button {
    width: 60px;
    height: 60px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Footer */
.footer-content {
    background: #f5f5f5;
    padding: 80px 0;
    text-align: center;
}

.footer-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.footer-content img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 30px;
    filter: grayscale(100%);
}

.footer-content img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 72, 47, 0.3), rgba(17, 72, 47, 0.1));
    pointer-events: none;
    z-index: 1;
}

.couple-names {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.credits {
    font-size: 1rem;
    color: #666;
}

.footer-bottom {
    background: #000;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ddd;
}

.logo {
    font-size: 1.2rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.nav-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-icons a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.nav-icons a:hover {
    color: #ddd;
}

/* Responsive Design */

/* Ajustes específicos para iPhone Pro Max e Plus (414x896) */
@media (max-width: 414px) and (max-height: 896px) {
    .hero-overlay {
        padding-bottom: 70px;
    }
    
    .wedding-subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 3rem;
        gap: 18px;
        margin-bottom: 20px;
    }
    
    .and-symbol {
        font-size: 2.2rem;
    }
    
    .wedding-date {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .welcome-icon {
        font-size: 2rem;
        margin-bottom: 18px;
    }
    
    .scroll-indicator {
        gap: 15px;
    }
    
    .mouse-icon {
        width: 24px;
        height: 38px;
    }
    
    .scroll-arrows i {
        font-size: 1rem;
    }
    
    .story h1 {
        font-size: 2.8rem;
    }
    
    .story h1, .rsvp h2, .congratulations h2, .gift h2, .countdown h2 {
        font-size: 2.2rem;
    }
    
    .name {
        font-size: 2.8rem;
    }
    
    .ceremony, .reception {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 90px;
        padding: 18px;
    }
    
    .gift-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .bible-quote {
        font-size: 1.2rem;
        line-height: 1.6;
    }
    
    .photo-gallery {
        gap: 12px;
    }
}

/* Ajustes específicos para iPhone 13 Pro, 13, 14, 15, 16 (390x844) */
@media (max-width: 390px) and (max-height: 844px) {
    .hero-overlay {
        padding-bottom: 65px;
    }
    
    .wedding-subtitle {
        font-size: 1.05rem;
        letter-spacing: 2px;
        margin-bottom: 14px;
    }
    
    .hero-title {
        font-size: 2.9rem;
        gap: 16px;
        margin-bottom: 18px;
    }
    
    .and-symbol {
        font-size: 2.1rem;
    }
    
    .wedding-date {
        font-size: 1.7rem;
        letter-spacing: 2px;
    }
    
    .welcome-icon {
        font-size: 1.9rem;
        margin-bottom: 16px;
    }
    
    .scroll-indicator {
        gap: 14px;
    }
    
    .mouse-icon {
        width: 23px;
        height: 36px;
    }
    
    .scroll-arrows i {
        font-size: 0.95rem;
    }
    
    .story h1 {
        font-size: 2.6rem;
    }
    
    .story h1, .rsvp h2, .congratulations h2, .gift h2, .countdown h2 {
        font-size: 2.1rem;
    }
    
    .name {
        font-size: 2.6rem;
    }
    
    .ceremony, .reception {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 18px;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .countdown-timer {
        gap: 14px;
    }
    
    .countdown-item {
        min-width: 85px;
        padding: 16px;
    }
    
    .gift-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .bible-quote {
        font-size: 1.15rem;
        line-height: 1.6;
    }
    
    .photo-gallery {
        gap: 10px;
    }
}

/* Ajustes específicos para iPhone SE/8 (375x667) */
@media (max-width: 375px) and (max-height: 667px) {
    .hero-overlay {
        padding-bottom: 35px;
    }
    
    .wedding-subtitle {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        margin-bottom: 6px;
    }
    
    .hero-title {
        font-size: 1.7rem;
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .and-symbol {
        font-size: 1.3rem;
    }
    
    .wedding-date {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .welcome-icon {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .scroll-indicator {
        gap: 6px;
    }
    
    .mouse-icon {
        width: 16px;
        height: 24px;
    }
    
    .scroll-arrows i {
        font-size: 0.7rem;
    }
    
    .story h1 {
        font-size: 1.5rem;
    }
    
    .story h1, .rsvp h2, .congratulations h2, .gift h2, .countdown h2 {
        font-size: 1.4rem;
    }
    
    .name {
        font-size: 1.5rem;
    }
    
    .ceremony, .reception {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .countdown-timer {
        gap: 6px;
    }
    
    .countdown-item {
        min-width: 55px;
        padding: 8px;
    }
    
    .gift-buttons {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
    
    .bible-quote {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .photo-gallery {
        gap: 4px;
    }
    
    /* Reduzir espaçamentos gerais */
    .story, .rsvp, .congratulations, .gift, .countdown {
        padding: 30px 15px;
    }
    
    .story h1, .rsvp h2, .congratulations h2, .gift h2, .countdown h2 {
        margin-bottom: 15px;
    }
    
    .bible-quote {
        margin: 15px 0;
    }
    
    .ceremony, .reception {
        margin: 15px 0;
        padding: 15px;
    }
    
    .countdown-timer {
        margin: 15px 0;
    }
    
    .photo-gallery {
        margin: 15px 0;
    }
    
    /* Ajustes específicos para modais em iPhone SE/8 */
    .monetary-modal .modal-content {
        width: 95%;
        max-width: 300px;
        margin: 8px auto;
    }
    
    .monetary-modal .modal-header {
        padding: 12px;
    }
    
    .header-content h3 {
        font-size: 12px;
    }
    
    .monetary-modal .modal-body {
        padding: 12px;
    }
    
    .accounts-grid {
        gap: 12px;
    }
    
    .account-header {
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    
    .account-avatar {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .account-info h4 {
        font-size: 10px;
    }
    
    .account-details {
        gap: 8px;
    }
    
    .detail-row .label {
        font-size: 9px;
    }
    
    .detail-row .value {
        font-size: 10px;
    }
    
    .copy-field {
        padding: 8px 12px;
    }
    
    .modal-note {
        padding: 12px;
    }
    
    .modal-note p {
        font-size: 10px;
    }
}

/* Ajustes específicos para modais em iPhone 13 Pro, 13, 14, 15, 16 */
@media (max-width: 390px) and (max-height: 844px) {
    .monetary-modal .modal-content {
        width: 95%;
        max-width: 365px;
        margin: 18px auto;
    }
    
    .monetary-modal .modal-header {
        padding: 20px;
    }
    
    .header-content h3 {
        font-size: 17px;
    }
    
    .monetary-modal .modal-body {
        padding: 22px;
    }
    
    .accounts-grid {
        gap: 22px;
    }
    
    .account-header {
        margin-bottom: 22px;
        padding-bottom: 18px;
    }
    
    .account-avatar {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }
    
    .account-info h4 {
        font-size: 15px;
    }
    
    .account-details {
        gap: 18px;
    }
    
    .detail-row .label {
        font-size: 13px;
    }
    
    .detail-row .value {
        font-size: 15px;
    }
    
    .copy-field {
        padding: 13px 17px;
    }
    
    .modal-note {
        padding: 22px;
    }
    
    .modal-note p {
        font-size: 14px;
    }
}

/* Ajustes específicos para modais em iPhone Pro Max e Plus */
@media (max-width: 414px) and (max-height: 896px) {
    .monetary-modal .modal-content {
        width: 95%;
        max-width: 380px;
        margin: 20px auto;
    }
    
    .monetary-modal .modal-header {
        padding: 22px;
    }
    
    .header-content h3 {
        font-size: 18px;
    }
    
    .monetary-modal .modal-body {
        padding: 24px;
    }
    
    .accounts-grid {
        gap: 24px;
    }
    
    .account-header {
        margin-bottom: 24px;
        padding-bottom: 20px;
    }
    
    .account-avatar {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .account-info h4 {
        font-size: 16px;
    }
    
    .account-details {
        gap: 20px;
    }
    
    .detail-row .label {
        font-size: 14px;
    }
    
    .detail-row .value {
        font-size: 16px;
    }
    
    .copy-field {
        padding: 14px 18px;
    }
    
    .modal-note {
        padding: 24px;
    }
    
    .modal-note p {
        font-size: 15px;
    }
}

/* Ajustes específicos para botões e elementos interativos em iPhone SE/8 */
@media (max-width: 375px) and (max-height: 667px) {
    .btn-danger {
        padding: 8px 14px;
        font-size: 0.75rem;
        border-radius: 16px;
    }
    
    .play-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .rsvp-form input,
    .rsvp-form select,
    .rsvp-form textarea {
        padding: 8px 12px;
        font-size: 0.8rem;
        border-radius: 5px;
    }
    
    .rsvp-form label {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .rsvp-form .form-group {
        margin-bottom: 10px;
    }
    
    .rsvp-form .btn-primary {
        padding: 10px 18px;
        font-size: 0.85rem;
        border-radius: 20px;
    }
}

/* Ajustes específicos para botões e elementos interativos em iPhone 13 Pro, 13, 14, 15, 16 */
@media (max-width: 390px) and (max-height: 844px) {
    .btn-danger {
        padding: 13px 22px;
        font-size: 0.95rem;
        border-radius: 22px;
    }
    
    .play-button {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
    
    .rsvp-form input,
    .rsvp-form select,
    .rsvp-form textarea {
        padding: 13px 17px;
        font-size: 0.95rem;
        border-radius: 9px;
    }
    
    .rsvp-form label {
        font-size: 0.95rem;
        margin-bottom: 9px;
    }
    
    .rsvp-form .form-group {
        margin-bottom: 18px;
    }
    
    .rsvp-form .btn-primary {
        padding: 15px 26px;
        font-size: 1rem;
        border-radius: 26px;
    }
}

/* Ajustes específicos para botões e elementos interativos em iPhone Pro Max e Plus */
@media (max-width: 414px) and (max-height: 896px) {
    .btn-danger {
        padding: 14px 24px;
        font-size: 1rem;
        border-radius: 24px;
    }
    
    .play-button {
        width: 54px;
        height: 54px;
        font-size: 1.4rem;
    }
    
    .rsvp-form input,
    .rsvp-form select,
    .rsvp-form textarea {
        padding: 14px 18px;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .rsvp-form label {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .rsvp-form .form-group {
        margin-bottom: 20px;
    }
    
    .rsvp-form .btn-primary {
        padding: 16px 28px;
        font-size: 1.05rem;
        border-radius: 28px;
    }
}

@media (max-width: 768px) {
    .hero-overlay {
        padding-bottom: 60px;
    }
    
    .wedding-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        gap: 15px;
        margin-bottom: 18px;
    }
    
    .and-symbol {
        font-size: 2rem;
    }
    
    .wedding-date {
        font-size: 1.7rem;
        letter-spacing: 2px;
    }
    
    .welcome-icon {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .scroll-indicator {
        gap: 12px;
    }
    
    .mouse-icon {
        width: 22px;
        height: 35px;
    }
    
    .scroll-arrows i {
        font-size: 0.9rem;
    }
    
    .story h1 {
        font-size: 2.5rem;
    }
    
    .story h1, .rsvp h2, .congratulations h2, .gift h2, .countdown h2 {
        font-size: 2rem;
    }
    
    .name {
        font-size: 2.5rem;
    }
    
    .ceremony, .reception {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        gap: 12px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px;
    }
    
    .gift-buttons {
        flex-direction: column;
        align-items: center;
    }
}



@media (max-width: 480px) {
    .hero-overlay {
        padding-bottom: 50px;
    }
    
    .wedding-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    
    .hero-title {
        font-size: 2.4rem;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .and-symbol {
        font-size: 1.8rem;
    }
    
    .wedding-date {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .welcome-icon {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .scroll-indicator {
        gap: 10px;
    }
    
    .mouse-icon {
        width: 20px;
        height: 32px;
    }
    
    .story h1 {
        font-size: 2rem;
    }
    
    .bible-quote {
        font-size: 1.1rem;
    }
    
    .photo-gallery {
        gap: 8px;
    }
}

/* Modal para Dados Bancários - Mobile First Limpo */
.monetary-modal .modal-content {
    width: 95%;
    max-width: 400px;
    margin: 20px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(17, 72, 47, 0.2);
    border: 1px solid rgba(17, 72, 47, 0.1);
    background: white;
}

.monetary-modal .modal-header {
    background: linear-gradient(135deg, #11482f 0%, #1a5f3a 100%);
    padding: 20px;
    position: relative;
    border-bottom: none;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.header-content i {
    color: white;
    font-size: 18px;
    opacity: 0.9;
}

.header-content h3 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 0.5px;
}

.close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: auto;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.monetary-modal .modal-body {
    padding: 24px 20px;
    background: #fafbfc;
}

.accounts-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}


.account-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(17, 72, 47, 0.1);
}

.account-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #11482f 0%, #1a5f3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Josefin Sans', sans-serif;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(17, 72, 47, 0.25);
}

.account-avatar.bride {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.account-info {
    flex: 1;
    min-width: 0;
}

.account-info h4 {
    color: #11482f;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1.2;
}

.account-type {
    color: #6b7280;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(17, 72, 47, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
}

.account-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-row .label {
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-row .value {
    color: #11482f;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    word-break: break-all;
    background: rgba(17, 72, 47, 0.05);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(17, 72, 47, 0.1);
}

.copy-field {
    cursor: pointer;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(17, 72, 47, 0.1) 0%, rgba(17, 72, 47, 0.05) 100%);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border: 1px solid rgba(17, 72, 47, 0.2);
    margin-top: 8px;
}

.copy-field:hover {
    background: linear-gradient(135deg, rgba(17, 72, 47, 0.15) 0%, rgba(17, 72, 47, 0.1) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(17, 72, 47, 0.2);
}

.copy-field i {
    color: #11482f;
    font-size: 12px;
    opacity: 0.8;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.copy-field:hover i {
    transform: scale(1.1);
    opacity: 1;
}

.modal-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(184, 148, 31, 0.1) 100%);
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.modal-note i {
    color: #d4af37;
    font-size: 18px;
    flex-shrink: 0;
}

.modal-note p {
    color: #11482f;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    font-style: italic;
    text-align: center;
    line-height: 1.4;
}

/* Tablet */
@media (min-width: 768px) {
    .monetary-modal .modal-content {
        max-width: 600px;
        width: 90%;
    }
    
    .monetary-modal .modal-header {
        padding: 24px 28px;
    }
    
    .header-content h3 {
        font-size: 20px;
    }
    
    .header-content i {
        font-size: 20px;
    }
    
    .monetary-modal .modal-body {
        padding: 28px;
    }
    
    .accounts-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    
    
    .account-header {
        margin-bottom: 24px;
        padding-bottom: 20px;
    }
    
    .account-avatar {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .account-info h4 {
        font-size: 17px;
    }
    
    .account-details {
        gap: 20px;
    }
    
    .detail-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }
    
    .detail-row .label {
        font-size: 13px;
        min-width: 60px;
    }
    
    .detail-row .value {
        font-size: 15px;
        text-align: right;
        flex: 1;
    }
    
    .copy-field {
        padding: 14px 18px;
    }
    
    .modal-note {
        padding: 24px;
    }
    
    .modal-note p {
        font-size: 15px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .monetary-modal .modal-content {
        max-width: 700px;
    }
    
    .monetary-modal .modal-header {
        padding: 28px 32px;
    }
    
    .header-content h3 {
        font-size: 22px;
    }
    
    .monetary-modal .modal-body {
        padding: 32px;
    }
    
    .accounts-grid {
        gap: 32px;
    }
    
    
    .account-header {
        margin-bottom: 28px;
        padding-bottom: 24px;
    }
    
    .account-avatar {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
    
    .account-info h4 {
        font-size: 18px;
    }
    
    .account-details {
        gap: 24px;
    }
    
    .detail-row .label {
        font-size: 14px;
    }
    
    .detail-row .value {
        font-size: 16px;
    }
    
    .copy-field {
        padding: 16px 20px;
    }
    
    .modal-note {
        padding: 28px;
    }
    
    .modal-note p {
        font-size: 16px;
    }
}
