/* Variables de colores - Nueva paleta de verde menta */
:root {
    --mint-50: #f1f8f6;
    --mint-100: #dcefe7;
    --mint-200: #bde0d2;
    --mint-300: #94ccb6;
    --mint-400: #6db396;
    --mint-500: #4d9a7b;
    --mint-600: #3a7c63;
    --mint-700: #2f6652;
    --mint-800: #285244;
    --mint-900: #22453a;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gold: #d4af37;
    --gold-light: #f1e5bc;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: linear-gradient(to bottom, var(--mint-50), var(--mint-100));
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    color: var(--mint-800);
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--mint-800);
    font-family: "Dancing Script", cursive;
}

/* Header y navegación */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: "Dancing Script", cursive;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--mint-700);
    text-decoration: none;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.desktop-nav a {
    color: var(--mint-700);
    text-decoration: none;
    transition: color 0.3s;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.desktop-nav a:hover {
    color: var(--mint-900);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--mint-800);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    background-color: var(--white);
    padding: 1rem;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 1rem;
}

.mobile-nav a {
    color: var(--mint-700);
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
}

/* Hero section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 20px 0 20px;
    overflow: hidden;
    box-sizing: border-box;
    background-image: url('nueva_estetica.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bamboo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-bottom: 50px;
}

.hero-card {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--mint-800);
    font-family: "Dancing Script", cursive;
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--mint-700);
    font-family: "Dancing Script", cursive;
}

.quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--mint-600);
    margin-bottom: 2rem;
    font-family: "Montserrat", sans-serif;
}

.countdown-container {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.countdown-container h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--mint-800);
    font-family: "Montserrat", sans-serif;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    background-color: var(--mint-100);
    color: var(--mint-800);
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 0.5rem;
}

.countdown-item span {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    color: var(--mint-700);
}

/* Invitation section */
.invitation {
    padding: 5rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232f6652' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.invitation-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.invitation-card {
    background-color: var(--white);
    border: 1px solid var(--mint-200);
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.bamboo-decoration {
    position: absolute;
    width: 150px;
    height: 300px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='200' viewBox='0 0 100 200'%3E%3Cpath fill='%232f6652' fill-opacity='0.1' d='M20 160c0 22.1 17.9 40 40 40s40-17.9 40-40-17.9-40-40-40-40 17.9-40 40zm0-140c0 22.1 17.9 40 40 40s40-17.9 40-40-17.9-40-40-40-40 17.9-40 40z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.2;
    z-index: 1;
}

.bamboo-decoration.left {
    top: 0;
    left: 0;
    transform: rotate(-15deg);
}

.bamboo-decoration.right {
    top: 0;
    right: 0;
    transform: rotate(15deg);
}

.invitation-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.invitation-decoration {
    height: 2px;
    flex: 1;
    background: linear-gradient(to right, transparent, var(--mint-600));
    position: relative;
}

.invitation-decoration.right {
    background: linear-gradient(to left, transparent, var(--mint-600));
}

.invitation-decoration::before,
.invitation-decoration::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--mint-600);
    top: 50%;
    transform: translateY(-50%);
}

.invitation-decoration.left::after {
    right: 0;
}

.invitation-decoration.right::before {
    left: 0;
}

.invitation-title {
    padding: 0 2rem;
}

.invitation-title h3 {
    font-family: "Dancing Script", cursive;
    font-size: 2rem;
    color: var(--mint-800);
    text-align: center;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
}

.invitation-content {
    text-align: center;
    margin-bottom: 2rem;
}

.invitation-intro {
    font-size: 1.1rem;
    color: var(--mint-700);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.invitation-name {
    font-family: "Dancing Script", cursive;
    font-size: 2.5rem;
    color: var(--mint-600);
    margin: 1rem 0;
    font-weight: 700;
    letter-spacing: 1px;
}

.invitation-message {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

.invitation-divider i {
    color: var(--mint-600);
    font-size: 1.5rem;
    position: relative;
}

.invitation-divider i::before,
.invitation-divider i::after {
    content: "";
    height: 1px;
    width: 100px;
    background: linear-gradient(to right, transparent, var(--mint-300), transparent);
    position: absolute;
    top: 50%;
}

.invitation-divider i::before {
    right: 30px;
}

.invitation-divider i::after {
    left: 30px;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--mint-50);
    border-radius: 0.5rem;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.event-date,
.event-time,
.event-location {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.event-date i,
.event-time i,
.event-location i {
    font-size: 1.5rem;
    color: var(--mint-600);
    margin-bottom: 0.5rem;
}

.event-date p,
.event-time p,
.event-location p {
    margin: 0;
    color: var(--mint-800);
    font-weight: 500;
}

.invitation-footer {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: var(--mint-700);
    font-size: 1.1rem;
}

/* Details section */
.details {
    padding: 5rem 0;
    background-color: var(--mint-50);
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%232f6652' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.icon {
    font-size: 2rem;
    color: var(--mint-600);
    flex-shrink: 0;
}

.detail-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: "Montserrat", sans-serif;
    color: var(--mint-700);
}

.detail-content p {
    color: var(--mint-700);
}

.detail-content a {
    color: var(--mint-600);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.detail-content a:hover {
    color: var(--mint-800);
}

.dress-code {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.dress-code h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: "Montserrat", sans-serif;
    color: var(--mint-700);
}

.dress-code p {
    color: var(--mint-700);
    margin-bottom: 1rem;
}

.custom-dress-icon {
    width: 60px;
    height: auto;
    position: relative;
    z-index: -1;
}

.no-green-warning {
    margin-top: 2rem;
    background-color: var(--white);
    border: 2px dashed var(--mint-600);
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.no-green-warning::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg,
            rgba(47, 102, 82, 0.05),
            rgba(47, 102, 82, 0.05) 10px,
            rgba(255, 255, 255, 0.5) 10px,
            rgba(255, 255, 255, 0.5) 20px);
    z-index: 0;
}

.bamboo-icon {
    position: relative;
    font-size: 3rem;
    color: var(--mint-600);
    flex-shrink: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #e53935;
    font-size: 2rem;
}

.no-green-text {
    position: relative;
    z-index: 1;
}

.no-green-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #e53935;
}

.no-green-text p {
    font-weight: 600;
    color: var(--gray-800);
}

/* Gallery section */
.gallery {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.section-header i {
    color: var(--mint-600);
}

/* Gifts section */
.gifts {
    padding: 5rem 0;
    background-color: var(--mint-50);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232f6652' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.gifts-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gift-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
}

.gift-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gift-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gift-card .icon {
    font-size: 3rem;
    color: var(--mint-600);
    margin-bottom: 1rem;
}

.gift-card h3 {
    font-size: 1.5rem;
    color: var(--mint-800);
    margin-bottom: 1rem;
    font-family: "Montserrat", sans-serif;
}

.gift-card p {
    margin-bottom: 0.5rem;
    color: var(--mint-700);
}

.gift-message {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    text-align: center;
    margin-top: 2rem;
}

.gift-message p {
    color: var(--mint-700);
    font-style: italic;
}

/* RSVP section */
.rsvp {
    padding: 5rem 0;
    background-color: var(--mint-50);
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%232f6652' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.rsvp-info {
    text-align: center;
    color: var(--mint-700);
    margin-bottom: 2rem;
}

.form-container {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

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

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--mint-700);
}

input,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--mint-200);
    border-radius: 0.25rem;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--mint-500);
    box-shadow: 0 0 0 3px rgba(47, 102, 82, 0.1);
}

select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--mint-200);
    border-radius: 0.25rem;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    background-color: var(--white);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232f6652' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 2rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

select:focus {
    outline: none;
    border-color: var(--mint-500);
    box-shadow: 0 0 0 3px rgba(47, 102, 82, 0.1);
}

.radio-group {
    display: flex;
    gap: 2rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.radio-option input {
    width: auto;
}

.submit-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--mint-600);
    color: var(--white);
    border: none;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background-color: var(--mint-700);
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s;
}

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

/* Footer */
.footer {
    background-color: var(--mint-800);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: "Dancing Script", cursive;
}

.footer p {
    color: var(--mint-200);
}

.heart-icon {
    margin: 1rem 0;
    color: var(--mint-300);
    font-size: 1.5rem;
    animation: heartBeat 2s infinite;
}

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

.social-link {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: var(--mint-300);
    transform: scale(1.2);
}

.footer-info {
    color: var(--mint-300);
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.copyright {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--mint-400);
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--white);
    border-left: 4px solid var(--mint-600);
    padding: 1rem;
    border-radius: 0.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-start;
    max-width: 350px;
    z-index: 1100;
    transform: translateX(120%);
    transition: transform 0.3s ease-in-out;
}

.toast.show {
    transform: translateX(0);
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--mint-700);
}

.toast-message {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--gray-500);
    cursor: pointer;
    margin-left: 0.5rem;
}

/* Animaciones personalizadas */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    14% {
        transform: scale(1.3);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.3);
    }

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* Animaciones para secciones */
.hero,
.invitation,
.details,
.gallery,
.rsvp,
.gifts {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Efecto hover para tarjetas */
.detail-card,
.invitation-card {
    transition: all 0.4s ease;
}

/* Animación de corazón en footer */
.heart-icon {
    animation: heartBeat 2s infinite;
}

/* Efecto brillo para botones */
.submit-btn {
    position: relative;
    overflow: hidden;
}

/* Animación de entrada para elementos */
.fade-in {
    animation: fadeIn 1s forwards;
    opacity: 0;
}

/* Resaltar primera letra de títulos */
.section-title::first-letter {
    color: var(--mint-600);
    font-size: 1.5em;
}

/* Animación de cuenta regresiva */
.countdown-value {
    transition: all 0.3s ease;
}

.countdown-value:hover {
    transform: scale(1.1);
    background-color: var(--mint-200);
}

/* Estilos de la Mariposa */
.butterfly {
    position: fixed;
    width: 64px;
    height: 64px;
    background-image: url("https://hebbkx1anhila5yf.public.blob.vercel-storage.com/mariposa-85NxUIeaekYN2wkh0tb8xjFTZesmLZ.png");
    background-size: 192px 128px;
    z-index: 1000;
    pointer-events: none;
    transform-origin: center;
}

/* Animación del sprite */
@keyframes flutter {
    0% {
        background-position: 0px 0px;
    }

    16.66% {
        background-position: -64px 0px;
    }

    33.33% {
        background-position: -128px 0px;
    }

    50% {
        background-position: 0px -64px;
    }

    66.66% {
        background-position: -64px -64px;
    }

    83.33% {
        background-position: -128px -64px;
    }

    100% {
        background-position: 0px 0px;
    }
}

/* Media queries */
@media (min-width: 768px) {
    .event-details {
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
    }

    .event-date,
    .event-time,
    .event-location {
        width: 33%;
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        flex-direction: row;
    }

    .form-row .form-group {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 90px 20px 0 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .countdown-value {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }

    .gift-options {
        flex-direction: column;
    }

    .event-details {
        flex-direction: column;
        align-items: center;
    }

    .event-date,
    .event-time,
    .event-location {
        width: 100%;
        text-align: center;
    }

    .invitation-card {
        padding: 2rem 1.5rem;
    }

    .invitation-title h3 {
        font-size: 1.5rem;
    }

    .invitation-name {
        font-size: 2rem;
    }

    .invitation-message {
        font-size: 1rem;
    }

    .invitation-divider i::before,
    .invitation-divider i::after {
        width: 50px;
    }

    .invitation-divider i::before {
        right: 20px;
    }

    .invitation-divider i::after {
        left: 20px;
    }

    .event-details {
        padding: 1.5rem 1rem;
    }

    .no-green-warning {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .gift-card {
        text-align: center;
    }

    .gift-card p {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero {
        background-attachment: scroll;
        background-position: center center;
        padding-top: 100px;
    }
}