@import url('https://fonts.googleapis.com/css2?family=Hurricane&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hurricane&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --cor-roxo-principal: #d7c5ec5d;
    --cor-roxo-escuro: #aba0b8f5;
    --cor-branco: #ffffff;
    --cor-cinza-claro: #f8f8f8;
    --cor-preta: black;
    --menu-height: 80px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {    
    margin: 0;    
    font-family: 'Lato', sans-serif;
}

.fundo{
    font-family: 'Hurricane', cursive;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    background-color: rgb(252, 252, 252);    
    margin:0;    
    padding: 0;
    padding-top: var(--menu-height);
    overflow-x: hidden;
    color: rgb(0, 0, 0);
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
}

.menu{
    text-align: center;
    color: rgb(66, 33, 97);
    background-color: rgb(255, 255, 255);
    padding: 20px 10px;
    width: 100%;
    height: 100px;
    justify-content: space-around;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    gap: 15px;
}

.menu a {
    text-decoration: none;
    color: #2c1360;
    transition: color 0.3s;
    padding: 8px 12px;
    white-space: nowrap;
}

.menu a:hover {
    color: #5a2ca0;
}

.container-hero {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imagemnoivos {
    width: 100%;
    height: auto;
    max-height: 1300px;
    display: block;
    object-fit: contain;
    min-height: 400px;
    max-width: 100%;
}

.texto-sobre-imagem {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    z-index: 10;
    padding: 20px;
    font-family: 'Hurricane', cursive;
}

.texto-sobre-imagem .titulo-principal {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.texto-sobre-imagem .data-casamento {
    font-size: 1.2rem;
    font-weight: 400;
}

.boximage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    background-image: url("imagemcasamento2.0.jpg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    padding: 20px;    
}


.titulo-principal {
    font-family: 'Hurricane', cursive;
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
    text-align: center;
}

.data-casamento {
    font-size: 1.2rem;
    font-weight: 400;
}

.container-imagem-casal {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.imagem-casal {
    max-width: 300px;
    width: 60%;
    height: auto;
}

.letra-musica {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
}

.secao-padrao {
    width: 100%;
    padding: 60px 20px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.resp_wrapper_16_9 {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 0;
    padding-bottom: 56.25%; /*proporção 16:9*/
    margin: 20px auto;
}

.mapa-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.fontLato{
    font-family: 'Lato', sans-serif;
}

.fontLarger{
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.sdn-titulo-pagina {
    font-family: 'Hurricane', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 400;
    color: inherit;
    padding-top: 60px;
}

.content-box.wysiwyg {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

button {
    font-size: 24px;
    background: none;
    border: none;
    color: #2c1360;
    cursor: pointer;
    transition: transform 0.2s;
    padding: 0;
}

button:hover {
    transform: scale(1.1);
}

.cart {
    display: inline-block;
    padding: 10px 20px;
    background-color: #a794d6;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    cursor: pointer;
  }

  
/*tablets*/
@media (min-width: 768px) {
    .menu {
        padding: 25px 20px;
        font-size: 18px;
        gap: 30px;
    }
    
    .titulo-principal {
        font-size: 3.5rem;
    }
    
    .data-casamento {
        font-size: 1.5rem;
    }
    
    .imagem-casal {
        max-width: 400px;
        width: 40%;
    }
    
    .letra-musica {
        font-size: 1.1rem;
        padding: 40px;
    }
    
    .boximage {
        font-size: 2rem;
    }
    
    .imagemnoivos {
        min-height: 500px;
    }
    
    .texto-sobre-imagem {
        padding: 30px;
    }
    
    .titulo-principal {
        font-size: 3.5rem;
    }
    
    .data-casamento {
        font-size: 1.5rem;
    }
}

/*desktop*/
@media (min-width: 1024px) {
    .menu {
        font-size: 20px;
        padding: 30px 40px;
    }
    
    .titulo-principal {
        font-size: 4rem;
    }
    
    .imagem-casal {
        max-width: 500px;
        width: 30%;
    }
    
    .boximage {
        font-size: 2.5rem;
    }
    
    .imagemnoivos {
        min-height: 600px;
    }
    
    .texto-sobre-imagem {
        padding: 40px;
    }
    
    .titulo-principal {
        font-size: 4rem;
    }
    
    .secao-padrao {
        padding: 80px 40px;
    }
}

/*large screens*/
@media (min-width: 1200px) {
    .menu {
        padding: 30px 60px;
    }
    
    .titulo-principal {
        font-size: 4.5rem !important;
    }
}

/*telas muito pequenas*/
@media (max-width: 480px) {
    .menu {
        flex-direction: column;
        gap: 10px;
        padding: 15px 10px;
    }
    
    .menu a {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
    
    .titulo-principal {
        font-size: 2rem;
    }
    
    .data-casamento {
        font-size: 1rem;
    }
    
    .boximage {
        min-height: 400px;
        font-size: 1.2rem;
        padding: 15px;
    }
    
    .imagemnoivos {
        min-height: 300px;
    }
    
    .texto-sobre-imagem {
        padding: 15px;
    }
    
    .titulo-principal {
        font-size: 2rem !important;
    }
    
    .data-casamento {
        font-size: 1rem !important;
    }
    
    .imagem-casal {
        width: 80%;
        max-width: 250px;
    }
    
    .player {
        bottom: 10px;
        right: 10px;
        padding: 12px;
    }
    
    button {
        font-size: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    button {
        transition: none;
    }
    
    button:hover {
        transform: none;
    }
}


.contador {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.bloco {
  background: #a794d6;
  color: #fff;
  width: 120px;          
  height: 120px;         
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.bloco span {
  font-size: 2em;
  font-weight: 700;
  display: block;
}

.bloco p {
  margin: 0;
  font-size: 0.8em;
  letter-spacing: 1px;
}

.folha-decorativa-hero {
        width: 60px;
        margin-bottom: 15px;
    }

.secao-letra .folha-decorativa,
    .folha-decorativa-topo,
    .folha-decorativa-topo-roxa {
        width: 80px !important;
}

.folha-decorativa-hero {
    width: 100px;
    height: auto;
    margin-bottom: 30px;
    opacity: 0.9;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}


.secao-letra {
    background-color: var(--cor-roxo-principal);
    color: black;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    font-size: 20px;
    width: 100%;
}

.secao-letra .folha-decorativa {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: auto;
    opacity: 0.7;
}


.letra-musica {
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Lato', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: black;
    font-style: italic;
    padding-top: 60px;
}


 .secao-roxa {
    background-color: var(--cor-roxo-principal);
    color: black;
    padding: 80px 20px;
    position: relative;
}

 .secao-roxa .folha-decorativa-topo-roxa {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: auto;
    opacity: 0.7;
}

.section-recepcao{
    background-color: var(--cor-roxo-principal);
    width: 100%;
 }



.secao-recepcao .folha-decorativa-topo-roxa {
    background-color: var(--cor-roxo-principal);
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: auto;
    opacity: 0.7;
}


.folha-roxa {    
    width: 80px;
    height: auto;    
    margin-top: 40px;
}

.contagem-regressiva {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
}

.presentes {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
}

.gift-button {
  width: 100%;
  padding: 24px;
  border: none;
  border-radius: 50px;
  background-color: #a794d6; /* Lilás principal */
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;

}

/* ===== Menu styles imported from styleMenu.css ===== */
:root {
    --cor-roxo-principal: #e6e6fa;
    --cor-roxo-escuro: #4a2598f5;
    --cor-branco: #ffffff;
    --cor-cinza-claro: #f8f8f8;
    --cor-preta: black;
    --menu-height: 80px;
}

/* Menu fixed / header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--cor-branco);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 20px 30px;
    width: 100%;
    min-height: 80px;
    background-color: var(--cor-branco);
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 400;
}

.menu a {
    text-decoration: none;
    color: var(--cor-roxo-escuro);
    transition: color 0.3s ease;
    padding: 8px 12px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu a:hover {
    color: var(--cor-roxo-principal);
}

/* Hamburguer */
.hamburger {
    display: none; /* Começa escondido, será exibido no mobile */
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001; /* Acima do menu */
}

.bar {
    display: block;
    width: 100%;
    height: 4px;
    margin: 6px 0;
    background-color: var(--cor-roxo-escuro);
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

/* Transição do ícone para o "X" */
.menu-open .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-open .bar:nth-child(2) {
    opacity: 0;
}

.menu-open .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

a {
    color: white;
    text-decoration: none; /* Remove o sublinhado padrão se desejar */
}

a:hover {
    color: #f0f0f0; /* Um branco levemente diferente para feedback visual */
    /*text-decoration: underline; /* Adiciona sublinhado no hover */
}

/* Mobile behaviour */
@media (max-width: 767px) {
    .hamburger { display: block; }

    .menu {
        display: none !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 60%;
        max-width: 300px;
        padding-top: 100px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
        min-height: auto;
    }

    .menu.active {
        display: flex !important;
        transform: translateX(0);
    }

    .menu a { padding: 15px 20px; width: 100%; text-align: left; border-bottom: 1px solid #eee; }
    .menu a:last-child { border-bottom: none; }

    .header { height: var(--menu-height); }
}

@media (max-width: 480px) {
    :root { --menu-height: 80px; }
}

@media (min-width: 768px) {
    .menu { transform: translateX(0) !important; position: relative; height: auto; padding-top: 20px; width: 100%; box-shadow: none; }
    .hamburger { display: none; }
}

/* Small helper for icons used in menu pages */
.icon { width: 120px; margin-bottom: 30px; opacity: 0.7; }

/* End imported menu styles */