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

html {
    scroll-behavior: smooth;
}

:root {
    --color-primary: #f5f0eb;
    --color-secondary: #d4c4b0;
    --color-accent: #8b7355;
    --color-text: #3d3229;
    --color-text-light: #6b5d54;
    --color-white: #ffffff;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.7;
    font-weight: 300;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.3;
}

h1 {
    font-size: 4rem;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--color-accent);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('quarto\ hotel\ lemoment.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.5s ease;
}

.hero-section .hero-content {
    text-align: center;
    z-index: 1;
    color: var(--color-white);
    max-width: 800px;
    padding: 2rem;
    animation: fadeIn 2s ease-in;
}

.hero-logo {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1) drop-shadow(0 2px 20px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-family: var(--font-sans);
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--color-white);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background-color: transparent;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 2px;
    border: 2px solid var(--color-white);
    border-radius: 0;
    transition: all 0.4s ease;
    font-family: var(--font-sans);
    text-transform: uppercase;
    cursor: pointer;
}

.hero-button:hover {
    background-color: var(--color-white);
    color: var(--color-text);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.hero-button-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-button-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: brightness(1.2);
    color: var(--color-white);
}

/* Moment Section */
.moment-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('noiva\ lingerie.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.moment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.5s ease;
}

.moment-content {
    text-align: center;
    z-index: 1;
    color: var(--color-white);
    max-width: 900px;
    width: 90%;
    padding: 3rem 2rem;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.moment-poetry {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    line-height: 2.2;
    color: var(--color-white);
    font-weight: 300;
    font-style: italic;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Old hero section - keeping for backwards compatibility */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eed6ca;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 115, 85, 0.1) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeIn 2s ease-in;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content a {
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.hero-content a:hover {
    opacity: 0.9;
}

.logo {
    width: 100%;
    height: 80vh;
    max-height: 80vh;
    object-fit: contain;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.brand-name {
    font-size: 5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-style: italic;
}

.tagline {
    font-size: 1.3rem;
    color: #984221;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Intro Section */
.intro {
    padding: 8rem 2rem;
    background-color: var(--color-white);
}

.poetry {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    line-height: 2;
    color: var(--color-text);
    font-weight: 300;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background-color: var(--color-primary);
}

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

.about-content p:first-of-type {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-style: italic;
    margin-bottom: 2.5rem;
    color: var(--color-accent);
}

.highlight {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    margin-top: 2.5rem;
    color: var(--color-accent);
}

/* Experience Section */
.experience {
    padding: 6rem 2rem;
    background-color: var(--color-white);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.experience-item {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px);
}

.experience-item h3 {
    margin-bottom: 1.5rem;
}

/* Instagram CTA Section */
.instagram-cta {
    padding: 6rem 2rem;
    background-color: var(--color-white);
    border-top: 1px solid rgba(212, 196, 176, 0.3);
}

.instagram-text {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    margin: 2rem auto;
    color: var(--color-text-light);
}

.cta-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff !important;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-instagram svg {
    color: #ffffff !important;
    fill: #ffffff !important;
}

.cta-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(188, 24, 136, 0.4);
    filter: brightness(1.1);
}

/* Community Section */
.community {
    padding: 8rem 2rem;
    background: #eed6ca;
    color: #984221;
    position: relative;
}

.community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(152, 66, 33, 0.3), transparent);
}

.community-content {
    max-width: 600px;
    margin: 0 auto;
}

.community h2 {
    color: #984221;
}

.community-text {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-style: italic;
    margin: 2rem auto;
    color: #984221;
}

.community-description {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #984221;
}

/* Inscription Form */
.inscription-form {
    max-width: 500px;
    margin: 3rem auto;
}

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

.form-group input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(152, 66, 33, 0.3);
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--color-text);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #984221;
    background-color: var(--color-white);
    box-shadow: 0 4px 15px rgba(152, 66, 33, 0.2);
}

.form-group input::placeholder {
    color: var(--color-text-light);
    opacity: 0.7;
}

.inscription-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

.inscription-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#mensagemSucesso {
    color: #984221;
    font-size: 1.1rem;
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(152, 66, 33, 0.1);
    border-radius: 10px;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #984221;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(152, 66, 33, 0.3);
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(152, 66, 33, 0.4);
    background-color: #7a3319;
    color: var(--color-white);
    filter: brightness(1.1);
}

.cta-subtitle {
    margin-top: 1.5rem;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: #984221;
}

/* Footer */
footer {
    padding: 4rem 2rem 2rem;
    background-color: var(--color-text);
    color: rgba(255, 255, 255, 0.8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--color-secondary);
}

.footer-section h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Desabilita parallax em mobile para melhor performance */
    .hero-section,
    .moment-section {
        background-attachment: scroll;
    }

    .hero-logo {
        max-width: 350px;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        gap: 0.8rem;
    }

    .hero-button {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
    }

    .moment-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }

    .moment-poetry {
        font-size: 1.4rem;
        line-height: 2;
    }

    .logo {
        height: 50vh;
        max-height: 50vh;
    }

    h1, .brand-name {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .poetry {
        font-size: 1.2rem;
    }

    .intro, .community, .instagram-cta {
        padding: 5rem 1.5rem;
    }

    .about, .experience {
        padding: 4rem 1.5rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .community-text, .instagram-text {
        font-size: 1.3rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .form-group input {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    /* Desabilita parallax em mobile para melhor performance */
    .hero-section,
    .moment-section {
        background-attachment: scroll;
    }

    .hero-logo {
        max-width: 280px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-button {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .moment-content {
        padding: 1.5rem 1rem;
        width: 95%;
    }

    .moment-poetry {
        font-size: 1.2rem;
        line-height: 1.9;
    }

    .logo {
        height: 40vh;
        max-height: 40vh;
    }

    .brand-name {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .poetry {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .form-group input {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }
}
