/* Variáveis de cores baseadas na paleta fornecida */
:root {
    --primary-color: #B3CEE5;
    --secondary-color: #B0B7BD;
    --light-color: #FAFAFA;
    --dark-color: #1C1C1C;
    --primary-light: #d1e2f0;
    --primary-dark: #8badc9;
    --overlay-color: rgba(28, 28, 28, 0.7);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Controle de som */
.sound-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#sound-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

#sound-toggle:hover {
    transform: scale(1.1);
    background-color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

section {
    padding: 100px 0;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    text-align: center;
}

.btn:hover {
    background-color: #9da3a9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header e navegação */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-color);
    transition: var(--transition);
}

.header.scrolled .logo {
    color: var(--dark-color);
}

/* Logo mobile - ocultar no topo, mostrar quando scrolled */
@media (max-width: 768px) {
    .logo {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .header.scrolled .logo {
        opacity: 1;
        visibility: visible;
    }
    
    /* Menu toggle sempre preto em mobile */
    .menu-toggle span {
        background-color: var(--dark-color) !important;
    }
    
    .header.scrolled .menu-toggle span {
        background-color: var(--dark-color) !important;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 15px;
}

.nav-menu li a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    font-size: 0.9rem;
}

.header.scrolled .nav-menu li a {
    color: var(--dark-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
    justify-content: center;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--light-color);
    margin-bottom: 5px;
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle span:last-child {
    margin-bottom: 0;
}

.header.scrolled .menu-toggle span {
    background-color: var(--dark-color);
}

/* Animação do menu toggle quando ativo */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: var(--primary-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--dark-color);
    padding: 0;
}

/* Fundo com carrossel esmaecido para mobile */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/principal1.jpg'), url('../images/principal2.jpg'), url('../images/principal3.jpg'), url('../images/principal4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.3s ease;
}

/* Overlay removido pois agora temos fundo sólido */
.hero .overlay {
    display: none;
}

/* Layout da seção hero */
.hero-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.hero-content {
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: center;
    margin-top: 60px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero .date {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 40px;
    letter-spacing: 5px;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-item span:first-child {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.countdown-item span:last-child {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Section */
.about {
    background-color: var(--light-color);
}

.about-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.about-text-left, .about-text-right {
    flex: 1;
}

.about-text-left p, .about-text-right p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-gallery {
    flex: 1.5;
    max-width: 500px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

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

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

/* Event Section */
.event {
    background-color: var(--primary-light);
}

.event-details {
    display: flex;
    gap: 50px;
}

.event-info {
    flex: 1;
}

.info-item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-top: 5px;
    flex-shrink: 0;
}

.info-item-content {
    flex: 1;
}

.info-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.event-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

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

.event-map iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

/* Travel Section */
.travel {
    background-color: var(--light-color);
}

.travel-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.travel-text {
    flex: 1;
}

.travel-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.travel-btn {
    margin-top: 20px;
}

.travel-image {
    flex: 0.5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Guestbook Section */
.guestbook {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(179, 206, 229, 0.3) 100%);
    position: relative;
    overflow: hidden;
}

.guestbook::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 182, 193, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 192, 203, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 218, 185, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.guestbook .container {
    position: relative;
    z-index: 1;
}

.guestbook-content {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.guestbook-form {
    flex: 0 0 400px;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.guestbook-messages {
    flex: 1;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-height: 600px;
    overflow-y: auto;
}

.guestbook-form h3, .guestbook-messages h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(179, 206, 229, 0.3);
}

.guestbook-messages .message {
    background-color: rgba(179, 206, 229, 0.2);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Gift List Section */
.gift-list {
    background: linear-gradient(135deg, #ffffff 0%, rgba(179, 206, 229, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.gift-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 182, 193, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.gift-list .container {
    position: relative;
    z-index: 1;
}

.gift-list-content {
    text-align: center;
    width: 100%;
    margin: 0;
}

.gift-iframe-container {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gift-iframe-container iframe {
    width: 100%;
    border: none;
    background-color: #ffffff;
    min-height: 600px;
    display: block;
    border-radius: 8px;
}

.gift-iframe-container-fullwidth {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 40px 0;
    background-color: #ffffff;
    position: relative;
}

.gift-iframe-container-fullwidth .section-title {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.gift-iframe-container-fullwidth iframe {
    width: 100%;
    border: none;
    background-color: #ffffff;
    min-height: 800px;
    display: block;
    overflow: auto;
}

/* Seção de Confirmação de Presença */
.confirmar-presenca {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #f8f9fa 100%);
    position: relative;
}

.confirmar-presenca::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"><circle cx="50" cy="50" r="2" fill="%23B3CEE5" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    pointer-events: none;
}

.confirmar-presenca-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.confirmar-presenca-info {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--primary-light);
}

.confirmar-presenca-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.confirmar-presenca-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.exemplo-dados {
    background: var(--primary-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.exemplo-dados h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.exemplo-dados p {
    margin: 0;
    font-size: 1rem;
    color: var(--dark-color);
}

.confirmar-presenca-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--primary-light);
}

.confirmar-presenca-form .form-group {
    margin-bottom: 1.5rem;
}

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

.confirmar-presenca-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--primary-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light-color);
}

.confirmar-presenca-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(179, 206, 229, 0.1);
}

.confirmar-presenca-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.confirmar-presenca-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(179, 206, 229, 0.4);
}

/* Responsividade */
@media (max-width: 768px) {
    .confirmar-presenca {
        padding: 60px 0;
    }
    
    .confirmar-presenca-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .confirmar-presenca-info,
    .confirmar-presenca-form {
        padding: 2rem;
    }
    
    .confirmar-presenca-info h3 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

.gift-iframe-container p {
    color: var(--secondary-color);
    font-style: italic;
    margin-top: 10px;
    padding: 0 20px;
}

.message-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.message-name {
    font-weight: 600;
}

.message-date {
    font-size: 0.9rem;
    color: #777;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: var(--light-color);
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 600px;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    position: relative;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #777;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--dark-color);
}

.modal h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsividade */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .about-content, .event-details, .travel-content, .guestbook-content {
        flex-direction: column;
    }
    
    .about-text-left,
    .about-text-right,
    .about-gallery,
    .event-info,
    .event-map,
    .travel-text,
    .travel-image,
    .guestbook-form,
    .guestbook-messages {
        width: 100%;
        flex: none;
        position: static;
        max-height: none;
    }

    .guestbook-form {
        order: 1;
        margin-bottom: 30px;
    }

    .guestbook-messages {
        order: 2;
    }

    .about-gallery {
        margin: 30px 0;
        order: 2;
        max-width: 400px;
    }
    
    .about-text-left {
        order: 1;
        text-align: center;
    }
    
    .about-text-right {
        order: 3;
        text-align: center;
    }

    .event-map {
        margin-top: 30px;
        height: 300px;
    }

    .travel-image {
        margin-top: 30px;
    }
    
    .event-map iframe {
        height: 350px;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-item span:first-child {
        font-size: 2.5rem;
    }
}

/* Esconder botão de fechar em desktop */
.menu-close {
    display: none;
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Mostrar botão de fechar apenas em mobile */
    .menu-close {
        display: flex;
    }
    
    /* Remover fundo de imagem para mobile */
    .hero::before {
        display: none;
    }
    
    /* Overlay azul esmaecido */
    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--primary-color);
        opacity: 0.7;
        z-index: 1;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--light-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 20px 30px;
        transition: 0.4s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .menu-close {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        margin-bottom: 20px;
    }
    
    .close-btn {
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--dark-color);
        cursor: pointer;
        padding: 10px;
        line-height: 1;
        transition: color 0.3s ease;
    }
    
    .close-btn:hover {
        color: var(--primary-color);
    }
    
    .close-btn span {
        display: block;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
        width: 100%;
    }
    
    .nav-menu a {
        color: var(--dark-color);
        display: block;
        font-size: 1.1rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero .date {
        font-size: 1.5rem;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-item span:first-child {
        font-size: 2rem;
    }
    
    .countdown-item span:last-child {
        font-size: 0.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links ul {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero {
        padding-top: 80px; /* Adiciona espaço para a barra superior */
        height: calc(100vh - 80px);
        min-height: 600px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-content {
        padding: 0 15px;
        margin-top: 80px; /* Adiciona mais espaço acima do conteúdo */
    }
    
    .hero-content-wrapper {
        flex-direction: column;
        gap: 20px;
        padding-top: 80px; /* Adiciona mais espaço no topo do wrapper */
    }
    
    .hero-carousel {
        max-width: 280px;
        height: 260px;
        margin: 10px auto 0;
        overflow: visible;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-swiper {
        transform: scale(0.7) translate(-4px, -6px) !important;
        transform-origin: center center !important;
    }
    
    /* Ajuste específico para Safari em dispositivos móveis */
    @supports (-webkit-appearance: none) {
        @media (max-width: 576px) and (hover: none) and (pointer: coarse) {
            .hero-swiper {
                transform: scale(0.7) translate(-4px, -20px) !important;
            }
            
            .hero-swiper .swiper-slide img {
                transform: translateY(-20%) scale(0.9) !important;
            }
            
            /* Ajuste específico para iPhone - manter título visível */
            .hero-content {
                margin-top: 200px !important; /* Aumenta o margin-top para garantir que o título apareça */
            }
            
            .hero-content-wrapper {
                padding-top: 200px !important; /* Aumenta o padding-top */
            }
        }
    }
    
    .event-buttons {
        flex-direction: column;
    }
    
    .event-buttons .btn {
        width: 100%;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 50px;
    }
    
    .countdown-item span:first-child {
        font-size: 1.5rem;
    }
    
    .countdown-item span:last-child {
        font-size: 0.7rem;
    }
}