/* DEFINIÇÃO DAS FONTES PERSONALIZADAS */ 
@font-face {
    font-family: 'Futura';
    src: url(fonts/FuturaLTProBook.otf) format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura';
    src: url(fonts/FuturaLTProBold.otf) format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura';
    src: url(fonts/FuturaLTProLight.otf) format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Callem';
    src: url(fonts/callem-script.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Estilo geral do corpo */
* {
    font-family: "Futura", "Playfair Display", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    background-color: #162150;
    color: #DDE0E1;
    overflow-x: hidden;
    min-height: 100vh;
    font-family: "Futura", "Playfair Display", sans-serif;
}

/* --------- */
/* Navbar Section  */
/* --------- */
.sticky {
    background-color: rgba(22, 33, 80, 0.95) !important;
    transition: all 0.3s ease-out 0s !important;
    box-shadow: 0px 10px 10px 0px rgba(22, 33, 80, 0.2) !important;
    backdrop-filter: blur(15px) !important;
}

.navbar {
    background-color: rgba(22, 33, 80, 0.1) !important;
    transition: all 0.3s ease-out;
    padding: 0.3rem 2rem;
    height: 100px;
    font-size: 1.2rem;
    position: fixed !important;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-scrolled {
    background-color: rgba(22, 33, 80, 0.95) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar-toggler {
    outline: none;
    background-color: transparent;
    z-index: 1;
    position: absolute;
    right: 2rem;
}

.navbar-toggler span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #DDE0E1;
    margin: 5px auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-toggler span:nth-child(1) {
    transform: translateY(-8px) rotate(45deg);
}

.navbar-toggler span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler span:nth-child(3) {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler span:nth-child(4) {
    display: none;
}

.navbar-toggler.collapsed span:nth-child(1),
.navbar-toggler.collapsed span:nth-child(3) {
    transform: rotate(0);
}

.navbar-toggler.collapsed span:nth-child(2) {
    opacity: 1;
}

.navbar-toggler.collapsed span:nth-child(4) {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.navbar-toggler span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #DDE0E1;
    margin: 5px auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-toggler.collapsed span:nth-child(1) {
    transform: translateY(0) rotate(0);
}

.navbar-toggler.collapsed span:nth-child(2) {
    opacity: 1;
}

.navbar-toggler.collapsed span:nth-child(3) {
    transform: translateY(0) rotate(0);
}

.navbar-toggler span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: translateY(8px) rotate(45deg) translateX(5px);
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) translateX(5px);
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
    transform: translateY(0) rotate(0) scaleX(0.8);
    opacity: 1;
}

.navbar-collapse.collapse.show {
    display: block !important;
}

.navbar-brand {
    color: #DDE0E1 !important;
    font-size: 1.5rem;
}

.navbar-brand img {
    height: auto;
    max-height: 70px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #DDE0E1 !important;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

.nav-link {
    padding: 0.8rem 1rem !important;
}

.navbar-nav .nav-item {
    position: relative;
    margin-left: 20px;
}

.navbar-nav .nav-item a {
    font-weight: 400;
    transition: all 0.3s ease-out 0s;
    position: relative;
    z-index: 1;
}

.navbar-nav .nav-item a::after {
    content: "";
    position: relative;
    display: block;
    height: 5px;
    width: 0;
    border-radius: 16px;
    background: #697CB6;
    bottom: 1px;
    left: 0;
    z-index: -1;
    transition: all 0.3s ease-out 0s;
}

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

/* Estilos elegantes para o cabeçalho */
.elegant-header {
    padding: 30px 0;
}

.main-title {
    font-family: "Callem", cursive;
    font-size: 4.8em;
    color: #DDE0E1;
    margin-bottom: 10px;
}

.divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #697CB6, transparent);
    margin: 20px auto;
}

.sub-title {
    font-size: 2em;
    color: #697CB6;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.2em;
    color: #DDE0E1;
    line-height: 1.6;
    margin-top: 20px;
    font-style: italic;
    opacity: 0.9;
}

/* NOVA SEÇÃO DE INFORMAÇÕES DO EVENTO */
.event-info-section {
    padding: 40px 0;
    margin: 30px 0;
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.info-card {
    background: linear-gradient(135deg, rgba(105, 124, 182, 0.1) 0%, rgba(61, 66, 87, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(105, 124, 182, 0.2);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5%;
    height: 5%;
    background: linear-gradient(135deg, rgba(105, 124, 182, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.info-card:hover::before {
    opacity: 1;
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #697CB6 0%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #DDE0E1;
}

.info-card h3 {
    font-size: 1.4em;
    color: #DDE0E1;
    margin-bottom: 15px;
    font-weight: 500;
}

.info-detail {
    font-size: 1.3em;
    color: #697CB6;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-subdetail {
    font-size: 1em;
    color: #A9A9A9;
    margin-bottom: 15px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    color: #697CB6;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.map-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.map-link:hover {
    color: #DDE0E1;
}

.map-link:hover i {
    transform: translateX(3px);
}

/* Ajustes para a contagem regressiva */
.countdown-section {
    margin-top: 50px;
}

.countdown {
    margin-top: 40px;
}

/* Estilo da seção de contagem regressiva */
.countdown-section {
    background-color: transparent;
    padding: 20px;
    color: #697CB6;
    text-align: center;
    border-radius: 5px;
    margin: 10px auto;
    max-width: 90%;
}

.location-info {
    color: #DDE0E1;
}

.countdown {
    display: flex;
    background-color: transparent;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.countdown-item {
    background: rgba(105, 124, 182, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(105, 124, 182, 0.2);
    padding: 25px 15px;
    border-radius: 15px;
    box-shadow: 0 1px 5px rgba(105, 124, 182, 0.7);
    transition: background-color 0.3s, transform 0.3s;
    color: #DDE0E1;
    font-size: 0.9em;
    text-transform: uppercase;
    text-align: center;
    flex: 1;
    max-width: 120px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.countdown-item h3 {
    font-size: 3.2em;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #DDE0E1 0%, #697CB6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.countdown-item .caption {
    font-size: 1.1em;
    color: #A9A9A9;
    text-align: center;
    margin-top: 5px;
}

.countdown-text {
    font-size: 1.4em;
    margin-top: 3%;
    text-align: center;
    color: #697CB6;
}

.countdown-text i {
    color: #697CB6;
    margin-bottom: 5px;
}

.countdown-text h4 {
    margin-top: -5px;
    font-size: 3em;
    text-align: center;
}

.countdown-item:hover {
    background-color: #697CB6;
    transform: scale(1.1);
}

/* ESTILO DO CARROSSEL - CORREÇÕES DE DIMENSIONAMENTO */
.carousel-section {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 40px 0;
}

.carousel-wrapper {
    position: relative;
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(0.95);
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.carousel-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.carousel-item.next {
    transform: translateX(100%);
}

.carousel-item.prev {
    transform: translateX(-100%);
}

.carousel-image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.carousel-image:hover {
    transform: scale(1.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.carousel-control {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    background-color: rgba(22, 33, 80, 0.8);
    color: #DDE0E1;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    z-index: 100;
    font-size: 24px;
    transition: background-color 0.3s ease;
}

.carousel-control.left {
    left: 20px;
}

.carousel-control.right {
    right: 20px;
}

.carousel-control:hover {
    background-color: rgba(105, 124, 182, 0.9);
}

.carousel-indicators {
    text-align: center;
    margin-top: 20px;
}

.indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 8px;
    background-color: #697CB6;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #DDE0E1;
    transform: scale(1.3);
}

/* Estilo do formulário */
.signup {
    background: #162150;
    padding: 20px;
    color: #DDE0E1;
    max-width: 600px;
    margin: 20px auto;
    border-radius: 7px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-weight: lighter;
}

.form {
    background: #162150;
    font-weight: lighter;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group {
    background: #3C4257;
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-control {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #697CB6;
    background: #162150;
    color: #DDE0E1;
}

.btn-submit {
    background: #697CB6;
    color: #DDE0E1;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #3C4257;
    color: #DDE0E1;
}

#signup .form {
    color: #DDE0E1;
}

#signup h2 {
    color: #DDE0E1;
}

#signup span,
#signup small {
    color: #DDE0E1;
}

/* Estilo para a área de comentário */
.recado {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    background-color: #162150;
}

.recado-nome h3 {
    margin: 0;
    align-items: center;
    justify-content: center;
    margin-left: 35%;
    width: 30%;
    padding: 10px;
    color: #DDE0E1;
    border-radius: 5px;
    font-size: 15px;
    text-align: center;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}

#balaotxt {
    color: #DDE0E1;
}

.recado-balao {
    color: #DDE0E1;
}

.recado-balao {
    position: relative;
    margin-top: 10px;
    padding: 15px;
    background-color: #697CB6;
    color: #DDE0E1;
    border-radius: 10px;
    font-size: 1.1em;
    transition: box-shadow 0.3s ease;
}

.recado-balao:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.recado-balao::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 20px;
    border-width: 10px;
    border-style: solid;
    border-color: #697CB6 transparent transparent transparent;
}

small {
    display: block;
    margin-top: 10px;
    font-size: 0.9em;
    color: #DDE0E1;
}

.location-info a {
    color: #DDE0E1;
}

.location-info a:hover {
    color: #697CB6;
}

.location-info p {
    font-size: 1.2em;
    color: #DDE0E1;
    text-align: center;
    margin-top: 10px;
}

.location-info h2 {
    color: #DDE0E1;
}

#titulo-countdown {
    line-height: 1.2;
    letter-spacing: 1.5px;
    color: #DDE0E1;
    font-size: 1.8em;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bolder;
}

.imgrecad {
    margin-left: 0%;
    margin-top: 6%;
    letter-spacing: 1px;
}

#titulo-countdown:hover {
    animation: zoom 0.5s forwards;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.star {
    position: absolute;
    border-radius: 70%;
    background: radial-gradient(circle, #697CB6 40%, #3C4257 70%);
    opacity: 0;
    animation: twinkle 5.5s infinite ease-in-out;
}

@keyframes fall {
    to {
        transform: translateY(calc(100vh + 10px));
    }
}

@keyframes twinkle {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

@keyframes colorChange {
    0% {
        background-color: #697CB6;
    }

    25% {
        background-color: #3C4257;
    }

    50% {
        background-color: #162150;
    }

    75% {
        background-color: #DDE0E1;
    }

    100% {
        background-color: #697CB6;
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.blink {
    animation: blink 2s infinite;
}

#special-date {
    color: #697CB6;
}

.countdown-text .fa-clock,
.countdown-text h4 {
    display: inline-block;
    animation: blink 2s infinite;
}

.countdown-text .fa-clock {
    font-size: 3em;
    color: #697CB6;
}

.countdown-text h4 {
    margin-top: 10px;
    font-size: 1.5em;
}

.countdown-text .fa-clock:hover,
.countdown-text h4:hover {
    animation: zoom 0.5s forwards;
}

footer {
    position: relative;
    background-color: #162150;
    color: #697CB6;
    text-align: center;
    padding: 20px;
    width: 100%;
    font-weight: 50;
}

.social-icon {
    margin: 0 10px;
    color: #697CB6;
    font-size: 24px;
    transition: color 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    color: #DDE0E1;
    text-decoration: none;
}

.name {
    font-size: 14px;
    margin-top: 10px;
    color: #697CB6;
}

.copyright {
    font-size: 12px;
    margin-top: 10px;
    color: #697CB6;
    text-decoration: none;
}

.social-icon:hover {
    color: #DDE0E1;
    text-decoration: none;
}

@keyframes follow-mouse {
    0% {
        transform: translate(0, 0) scale(0.5);
        opacity: 0;
    }

    50% {
        transform: translate(10px, 10px) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(0, 0) scale(0.5);
        opacity: 0;
    }
}

.image-center {
    text-align: center;
    animation: pulse 7s ease-in-out infinite;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2% !important;
    margin-bottom: 3%;
}

.image-center img {
    max-width: 30%;
    height: auto;
    margin-top: 10%;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.13);
    }

    100% {
        transform: scale(1);
    }
}

#days {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 0;
    margin-top: -0.2%;
    margin-bottom: -0.5%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #DDE0E1;
    font-size: 2em;
    text-align: center;
}

#hours {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    margin-top: -0.2%;
    margin-bottom: -0.5%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #DDE0E1;
    font-size: 2em;
    text-align: center;
}

#minutes {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    margin-top: -0.2%;
    margin-bottom: -0.5%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #DDE0E1;
    font-size: 2em;
    text-align: center;
}

.faixa-fotos {
    padding: 60px 0;
    background-color: #162150;
}

.molduras-orbita {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.moldura {
    flex: 1 1 calc(33% - 30px);
    box-sizing: border-box;
    max-width: 150px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #697CB6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.moldura img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.moldura:hover {
    transform: scale(1.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.moldura img:hover {
    transform: scale(1.05);
}

@keyframes bounceZoom {
    0% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1.2) translateY(-20px);
    }

    100% {
        transform: scale(1) translateY(0);
    }
}

#presentBox {
    position: relative;
    margin: 0 auto;
    width: 540px;
    height: 400px;
    animation: bounceZoom 4.2s infinite;
    overflow: hidden;
    margin-top: 50px;
    margin-bottom: 50px;
}

.present-box {
    background-image: url(img/present-box.svg);
}

.navFont {
    font-family: "Futura", sans-serif;
    font-weight: bolder;
    font-style: normal;
}

#logo {
    width: auto;
    height: 100px;
    /* Aumentei de 80px para 100px */
    max-height: 120px;
    /* Aumentei o máximo */
    position: absolute;
    left: 2%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    /* Adicionei transição suave */
}

.navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
}

.logo-sj {
    background-image: url(img/logoSJ.png);
}

body,
input,
textarea {
    cursor: default;
    user-select: none;
}

input:focus,
textarea:focus,
button:focus {
    outline: none;
}

.address {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
}

a {
    color: #DDE0E1;
    font-weight: bolder;
}

a:hover,
a:focus {
    color: #697CB6;
}

.dress-code-section {
    background-color: transparent;
    padding: 20px 0;
    margin: 20px 0;
}

.dress-code-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.dress-code-icon {
    font-size: 36px;
    color: #697CB6;
    margin-bottom: 10px;
}

.dress-code-content h2 {
    font-size: 24px;
    color: #DDE0E1;
    margin-bottom: 5px;
}

.dress-code-content p {
    font-size: 18px;
    color: #697CB6;
    line-height: 1.6;
}

/* Seções com fundo claro */
.light-bg-section {
    background-color: #DDE0E1;
    /* Cinza claro - Accent */
    color: #3C4257;
    /* Cinza médio - Neutra */
    padding: 40px 0;
}

.light-bg-section h2,
.light-bg-section h3,
.light-bg-section h4 {
    color: #162150;
    /* Azul profundo - Primária */
}

.light-bg-section p {
    color: 3C4257;
    /* Cinza médio - Neutra */
}

.light-bg-section a {
    color: #162150;
    /* Azul profundo - Primária */
}

.light-bg-section a:hover {
    color: #697CB6;
    /* Azul claro - Secondary */
}


.action-buttons {
    display: flex;
    justify-content: center;
    gap: -19px;
    margin-top: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
    height: 200px;
}

.svg-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    width: 140px;
    height: 140px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    box-shadow: none !important;
    padding: 0;
    position: relative;
}

.localizacao-btn {
    align-self: flex-start;
    margin-top: -6%;
    /* equivalente a ~10px */

}


.lista-btn {
    align-self: flex-start;
    margin-top: -6%;
    /* equivalente a ~10px */
}

.confirmar-btn {
    margin-top: 20px;
    /* equivalente a ~15px */
}

.dresscode-btn {
    align-self: flex-start;
    margin-top: -6%;
    /* equivalente a ~10px */
}

.info-btn {
    margin-top: 20px;
    /* equivalente a ~15px */

}

.dress-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
    margin-left: 43%;
}

.dress-button .svg-button {
    align-self: center;
    margin: 0 auto;
    display: block;
}


.svg-button:nth-child(4) {
    /* Dress Code */
    align-self: flex-end;
    margin-bottom: 30px;
    /* Mais abaixo (cor diferente) */
}



.svg-button:hover {
    transform: translateY(-5px) scale(1.1);
    background: transparent !important;
    border: none !important;
}

.svg-button img {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.svg-button:hover img {
    filter: brightness(1.2) drop-shadow(0 5px 15px rgba(105, 124, 182, 0.6));
}

/* ESTILOS PARA AS INFORMAÇÕES DE DATA E LOCAL (SEM CONTORNO E SEM FUNDO) */
.event-info-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 30px 0;
    padding: 0 20px;
}

.info-item {
    margin-bottom: 25px;
    max-width: 500px;
}

.info-title {
    font-size: 1.6em;
    color: #697CB6;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-detail {
    font-size: 1.4em;
    color: #DDE0E1;
    margin-bottom: 5px;
    font-weight: 500;
}

.info-subdetail {
    font-size: 1.1em;
    color: #A9A9A9;
}

.map-link-simple {
    display: inline-flex;
    align-items: center;
    color: #697CB6;
    text-decoration: none;
    font-size: 1em;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.map-link-simple i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.map-link-simple:hover {
    color: #DDE0E1;
}

.map-link-simple:hover i {
    transform: translateX(3px);
}

/* ESTILOS PARA AS INFORMAÇÕES DE DATA E LOCAL (SEM CONTORNO E SEM FUNDO) */
.event-info-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 30px 0;
    padding: 0 20px;
}

.info-item {
    margin-bottom: 25px;
    max-width: 500px;
}

.info-title {
    font-size: 1.6em;
    color: #697CB6;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-detail {
    font-size: 1.4em;
    color: #DDE0E1;
    margin-bottom: 5px;
    font-weight: 500;
}

.info-subdetail {
    font-size: 1.1em;
    color: #A9A9A9;
}

.map-link-simple {
    display: inline-flex;
    align-items: center;
    color: #697CB6;
    text-decoration: none;
    font-size: 1em;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.map-link-simple i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.map-link-simple:hover {
    color: #DDE0E1;
}

.map-link-simple:hover i {
    transform: translateX(3px);
}

/* ============ MEDIA QUERIES PARA MOBILE ============ */


.dresscode-tooltip-container {
    position: relative;
    display: inline-block;
}

.dresscode-tooltip {
    position: absolute;
    bottom: 125%; /* Posiciona acima do botão */
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    background-color: rgba(105, 124, 182, 0.95);
    color: #DDE0E1;
    text-align: center;
    border-radius: 10px;
    padding: 15px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid #3C4257;
}

.dresscode-tooltip h4 {
    margin: 0 0 10px 0;
    color: #fff;
    font-size: 1.2em;
    border-bottom: 1px solid rgba(221, 224, 225, 0.3);
    padding-bottom: 5px;
}

.dresscode-tooltip p {
    margin: 0 0 10px 0;
    font-size: 0.9em;
    line-height: 1.4;
}

.dresscode-tooltip ul {
    text-align: left;
    margin: 0;
    padding: 0 0 0 20px;
    font-size: 0.85em;
}

.dresscode-tooltip li {
    margin-bottom: 5px;
    line-height: 1.3;
}

.dresscode-tooltip-container:hover .dresscode-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Seta do tooltip */
.dresscode-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(105, 124, 182, 0.95) transparent transparent transparent;
}

.tooltip-container {
    position: relative;
    display: inline-block;
    margin: 0 10px;
}

.tooltip {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    background-color: rgba(105, 124, 182, 0.95);
    color: #DDE0E1;
    text-align: center;
    border-radius: 10px;
    padding: 15px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid #3C4257;
}

.tooltip h4 {
    margin: 0 0 10px 0;
    color: #fff;
    font-size: 1.2em;
    border-bottom: 1px solid rgba(221, 224, 225, 0.3);
    padding-bottom: 5px;
}

.tooltip p {
    margin: 0 0 10px 0;
    font-size: 0.9em;
    line-height: 1.4;
}

.tooltip ul {
    text-align: left;
    margin: 0;
    padding: 0 0 0 20px;
    font-size: 0.85em;
}

.tooltip li {
    margin-bottom: 5px;
    line-height: 1.3;
}

.tooltip-container:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Seta do tooltip */
.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(105, 124, 182, 0.95) transparent transparent transparent;
}

/* Ajustes para responsividade em mobile */
@media (max-width: 768px) {
    .tooltip {
        width: 200px;
        font-size: 0.8em;
    }
    
    .tooltip h4 {
        font-size: 1.1em;
    }
    
    .tooltip-container {
        margin: 0 5px;
    }
}

/* AUMENTO SIGNIFICATIVO DOS BOTÕES PARA MOBILE */
@media (max-width: 768px) {
    .action-buttons {
        gap: 20px;
        margin: 50px auto;
        padding: 0 25px;
        height: auto;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .svg-button {
        width: 120px !important;
        height: 120px !important;
        margin: 12px !important;
        min-width: 120px;
        min-height: 120px;
    }

    /* Remover completamente posicionamentos específicos para mobile */
    .localizacao-btn,
    .lista-btn,
    .dresscode-btn,
    .confirmar-btn,
    .info-btn {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        align-self: center !important;
    }

    /* Ajustar quebra de linha */
    .action-buttons br {
        display: none;
    }

    /* Tooltips maiores em mobile */
    .tooltip {
        width: 500px;
        font-size: 0.95em;
        bottom: 115%;
        left: 50%;
        transform: translateX(-50%);
    }

    .tooltip h4 {
        font-size: 1.4em;
    }

    .tooltip ul {
        font-size: 0.95em;
    }
    
    /* AUMENTO DA CAIXA DE PRESENTE NO MOBILE */
    #presentBox {
        width: 380px !important;
        height: 280px !important;
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }
}

@media (max-width: 480px) {
    .svg-button {
        width: 110px !important;
        height: 110px !important;
        margin: 10px !important;
    }

    .action-buttons {
        gap: 15px;
        margin: 40px auto;
        padding: 0 20px;
    }

    /* Layout de 2 botões por linha em mobile muito pequeno */
    .svg-button {
        flex: 0 0 calc(50% - 20px);
        max-width: 110px;
    }
    
    /* Aumento adicional da caixa de presente para mobile pequeno */
    #presentBox {
        width: 320px !important;
        height: 240px !important;
        margin-top: 35px !important;
        margin-bottom: 35px !important;
    }
}

@media (max-width: 360px) {
    .svg-button {
        width: 100px !important;
        height: 100px !important;
        margin: 8px !important;
    }

    .action-buttons {
        gap: 12px;
        margin: 35px auto;
        padding: 0 15px;
    }
    
    /* Ajuste final para mobile muito pequeno */
    #presentBox {
        width: 280px !important;
        height: 210px !important;
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }
}

/* MELHORIAS DE USABILIDADE PARA TOUCH */
.svg-button {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/* Garantir tamanho mínimo para toque */
@media (max-width: 768px) {
    .svg-button,
    .nav-link,
    .carousel-control,
    .indicator {
        min-height: 20px;
        min-width: 20px;
    }
}

/* ANIMAÇÃO SUAVE PARA BOTÕES */
.svg-button {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.svg-button:active {
    transform: scale(0.95);
}

/* MELHORIAS VISUAIS PARA BOTÕES MAIORES */
.svg-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.svg-button:hover img {
    filter: brightness(1.2) drop-shadow(0 5px 15px rgba(105, 124, 182, 0.6));
    transform: scale(1.1);
}


/* ============ BOTÕES MOBILE MELHORADOS ============ */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: rgba(15, 23, 60, 0.98) !important;
        backdrop-filter: blur(15px);
        padding: 20px;
        border-radius: 0 0 10px 10px;
        margin-top: 53px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }
    

    
    /* Esconder tooltips em mobile */
    .tooltip {
        display: none !important;
    }
    
    /* Esconder botões originais em mobile */
    .action-buttons {
        display: none !important;
    }
    
    /* Mostrar botões mobile - MELHORADO */
    .mobile-action-buttons {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 50px 0;
        width: 100%;
        padding: 0 15px;
    }
    
    .mobile-button {
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, rgba(105, 124, 182, 0.2) 0%, rgba(61, 66, 87, 0.2) 100%);
        backdrop-filter: blur(12px);
        border: 2px solid rgba(105, 124, 182, 0.4);
        border-radius: 20px;
        padding: 20px 25px;
        text-decoration: none;
        color: #DDE0E1;
        transition: all 0.3s ease;
        width: 100%;
        box-sizing: border-box;
        min-height: 90px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .mobile-button:hover {
        transform: translateY(-5px);
        background: linear-gradient(135deg, rgba(105, 124, 182, 0.3) 0%, rgba(61, 66, 87, 0.3) 100%);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        color: #DDE0E1;
        text-decoration: none;
        border-color: rgba(105, 124, 182, 0.6);
    }
    
    .mobile-button:active {
        transform: translateY(-2px);
    }
    
    .mobile-button img {
        width: 70px;
        height: 70px;
        margin-right: 20px;
        filter: brightness(1.1);
        flex-shrink: 0;
        /* REMOVIDO: background, border, padding e border-radius */
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        border-radius: 0 !important;
    }
    
    .mobile-button span {
        font-size: 1.3em;
        font-weight: 600;
        flex-grow: 1;
        text-align: left;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        letter-spacing: 0.5px;
    }
    
    /* Efeito de brilho suave nos botões */
    .mobile-button::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, rgba(105, 124, 182, 0.3), rgba(61, 66, 87, 0.3), rgba(105, 124, 182, 0.3));
        border-radius: 22px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-button:hover::before {
        opacity: 1;
    }
}

/* Desktop: esconder botões mobile e mostrar os originais */
@media (min-width: 992px) {
    .mobile-action-buttons {
        display: none !important;
    }
    
    .action-buttons {
        display: flex !important;
    }
}

/* Ajustes para tablets */
@media (max-width: 991px) and (min-width: 768px) {
    .mobile-action-buttons {
        max-width: 600px;
        margin: 50px auto;
    }
    
    .mobile-button {
        padding: 25px 30px;
        min-height: 100px;
    }
    
    .mobile-button img {
        width: 80px;
        height: 80px;
    }
    
    .mobile-button span {
        font-size: 1.4em;
    }
}

/* Ajustes para telas pequenas */
@media (max-width: 480px) {
    .mobile-action-buttons {
        gap: 15px;
        margin: 40px 0;
        padding: 0 10px;
    }
    
    .mobile-button {
        padding: 18px 20px;
        min-height: 80px;
        border-radius: 18px;
    }
    
    .mobile-button img {
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }
    
    .mobile-button span {
        font-size: 1.2em;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 360px) {
    .mobile-button {
        padding: 15px 18px;
        min-height: 75px;
        border-radius: 16px;
    }
    
    .mobile-button img {
        width: 55px;
        height: 55px;
        margin-right: 12px;
    }
    
    .mobile-button span {
        font-size: 1.1em;
    }
}

/* Melhorias de acessibilidade para o toggle */


/* Ajustes para o logo em mobile */
@media (max-width: 768px) {
    #logo {
        height: 80px;
        max-height: 90px;
    }
    
    .navbar {
        padding: 0.3rem 1rem;
        height: 90px;
    }
}

/* Ajustes para a imagem central em mobile */
@media (max-width: 768px) {
    .image-center img {
        max-width: 60%;
        margin-top: 15%;
    }
}

/* Animações adicionais para os botões mobile */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 rgba(105, 124, 182, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(105, 124, 182, 0.6);
    }
    100% {
        box-shadow: 0 0 0 rgba(105, 124, 182, 0.4);
    }
}

.mobile-button {
    animation: pulse-glow 2s infinite;
}

.mobile-button:hover {
    animation: none;
}

/* ============ AJUSTES PARA OS CARDS DE INFORMAÇÃO NO MOBILE ============ */
@media (max-width: 768px) {
    .event-info-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        margin-top: 30px !important;
    }
    
    .info-card {
        padding: 20px 15px !important;
        border-radius: 15px !important;
        margin: 0 10px !important;
    }
    
    .info-icon {
        width: 50px !important;
        height: 50px !important;
        margin: 0 auto 15px !important;
        font-size: 20px !important;
    }
    
    .info-card h3 {
        font-size: 1.2em !important;
        margin-bottom: 10px !important;
    }
    
    .info-detail {
        font-size: 1.1em !important;
        margin-bottom: 5px !important;
    }
    
    .info-subdetail {
        font-size: 0.9em !important;
        margin-bottom: 10px !important;
    }
    
    .map-link {
        font-size: 0.85em !important;
        margin-top: 8px !important;
    }
    
    /* Ajustar espaçamento geral da seção */
    .event-info-section {
        padding: 20px 0 !important;
        margin: 20px 0 !important;
    }
    
    /* Reduzir margens entre os elementos */
    .elegant-header {
        padding: 20px 0 !important;
        margin-bottom: 20px !important;
    }
    
    .main-title {
        font-size: 3.5em !important;
    }
    
    .sub-title {
        font-size: 1.6em !important;
    }
    
    .tagline {
        font-size: 1em !important;
        margin-top: 15px !important;
    }
}

/* Ajustes adicionais para telas muito pequenas */
@media (max-width: 480px) {
    .info-card {
        padding: 18px 12px !important;
        border-radius: 12px !important;
        margin: 0 5px !important;
    }
    
    .info-icon {
        width: 45px !important;
        height: 45px !important;
        margin: 0 auto 12px !important;
        font-size: 18px !important;
    }
    
    .info-card h3 {
        font-size: 1.1em !important;
        margin-bottom: 8px !important;
    }
    
    .info-detail {
        font-size: 1em !important;
    }
    
    .info-subdetail {
        font-size: 0.85em !important;
    }
    
    .main-title {
        font-size: 3em !important;
    }
    
    .sub-title {
        font-size: 1.4em !important;
    }
}

/* Melhorias de espaçamento para mobile */
@media (max-width: 768px) {
    .container > .container {
        padding: 0 10px !important;
    }
    
    .event-info-grid {
        margin: 20px 0 !important;
    }
    
    /* Reduzir espaçamento excessivo */
    br {
        display: none !important;
    }
    
    .max-width > .container {
        padding: 0 5px !important;
    }
}

/* Ajustes específicos para o layout grid */
@media (max-width: 768px) {
    .event-info-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .info-card {
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto 15px !important;
    }
}

/* Melhorar a hierarquia visual nos cards */
.info-card {
    text-align: center;
}

.info-detail {
    font-weight: 600;
    color: #697CB6 !important;
}

.info-subdetail {
    color: #A9A9A9 !important;
    line-height: 1.4;
}

/* Ajustar o link do mapa para mobile */
@media (max-width: 768px) {
    .map-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 15px;
        background: rgba(105, 124, 182, 0.1);
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .map-link:hover {
        background: rgba(105, 124, 182, 0.2);
        transform: translateY(-2px);
    }
}

.tagline {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.6;
}

.tagline-line {
    display: block;
    width: 100%;
}

.tagline-ampersand {
    display: block;
    margin: 8px 0;
    font-size: 1.2em;
    color: #DDE0E1;
}

/* Para mobile */
@media (max-width: 768px) {
    .tagline {
        padding: 0 15px;
    }
    
    .tagline-line {
        font-size: 1.1em;
    }
    
    .tagline-ampersand {
        margin: 6px 0;
        font-size: 1.1em;
    }
}
