/* Global Styles */
:root {
    --primary-color: #C14187; /* Dark Pink requested */
    --primary-dark: #a0356f;
    --accent-color: #C14187; /* Using the same pink for accents, or maybe a gold? Keeping it cohesive. */
    --text-color: #4A4A4a;
    --light-bg: #FFFFFF; /* White */
    --white: #FFFFFF;
    --gradient-bg: #FFFFFF; /* Pure white background */
    --secondary-bg: #f9f9f9; /* Subtle grey for differentiation if needed */
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--light-bg);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif; /* Using Montserrat for headings too as requested "Usar a font montesserat" */
    color: var(--primary-color);
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* Header */
.site-header {
    padding: 20px 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.header-date {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(212, 175, 55, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0;
    background: var(--gradient-bg);
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left; /* Changed from center to left for split layout */
}

.tagline {
    display: inline-block;
    background: rgba(217, 136, 166, 0.1);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem; /* Slightly larger */
    margin-bottom: 20px;
    color: #2c2c2c;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
    max-width: 100%; /* Reset max-width */
}

/* Features List in Hero (Optional, good for conversion) */
.hero-features {
    list-style: none;
    margin-bottom: 30px;
}
.hero-features li {
    margin-bottom: 10px;
    color: #555;
    font-weight: 500;
}

/* Hero Form Container */
.hero-form-wrapper {
    background: var(--white);
    padding: 30px; /* Compact padding */
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.8);
}

.hero-form-wrapper h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.cta-button {
    /* Kept for other uses, but form button dominates in hero */
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(217, 136, 166, 0.4);
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 136, 166, 0.6);
}

/* Features Section */
.features {
    padding: 60px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-card {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 20px;
    transition: 0.3s;
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.feature-card p {
    font-size: 0.95rem;
    color: #777;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.section-tag {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.profile-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 rgba(217, 136, 166, 0.2);
}

/* Registration Section */
.registration {
    padding: 80px 0;
    background: var(--gradient-bg);
}

.registration-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.registration-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.signup-form {
    margin-top: 30px;
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(217, 136, 166, 0.1);
}

.submit-button {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-button:hover {
    background-color: #b59424;
}

.privacy-note {
    margin-top: 20px;
    color: #999;
}

/* Footer */
.site-footer {
    background-color: #f8f8f8;
    padding: 30px 0;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

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

    .header-container {
        flex-direction: column;
        gap: 10px;
    }

    .hero-title {
        font-size: 2.2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-img {
        margin-bottom: 30px;
        box-shadow: 10px 10px 0 rgba(217, 136, 166, 0.2);
    }
    
    .registration-card {
        padding: 30px 20px;
    }
}

/* Pricing Section Styles */
.pricing {
    padding: 60px 0 100px;
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.currency {
    font-size: 1.2rem;
    vertical-align: super;
    margin-right: 5px;
}

.cents {
    font-size: 1rem;
    vertical-align: super;
}

.pricing-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pricing-card .cta-button {
    margin-top: auto;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(to bottom, #fff, #fff5fa);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(193, 65, 135, 0.4);
}

.card-header h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    min-height: 3em; /* Align prices */
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-old {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: #999;
    margin-bottom: 5px;
    min-height: 1.2em;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.card-body ul {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
    padding: 0 10px;
}

.card-body li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #666;
}

.full-width {
    width: 100%;
    text-align: center;
}

.page-header {
    padding: 60px 0 30px;
    background: var(--gradient-bg);
}

@media (max-width: 768px) {
    .pricing-card.featured {
        transform: none;
    }
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    .card-header h3 {
        min-height: auto;
    }
}

/* Mother's Day Specific Styles */
.mothers-day-accent {
    color: #D988A6;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    position: relative;
}

.hero-date-badge {
    background: linear-gradient(135deg, #C14187 0%, #D988A6 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    box-shadow: 0 10px 20px rgba(193, 65, 135, 0.2);
}

.story-section {
    background: linear-gradient(180deg, #fff5fa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '✿';
    position: absolute;
    top: -20px;
    left: 5%;
    font-size: 15rem;
    color: rgba(217, 136, 166, 0.03);
    pointer-events: none;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.countdown-item {
    background: white;
    padding: 20px 15px;
    border-radius: 15px;
    min-width: 90px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid rgba(217, 136, 166, 0.1);
    transition: 0.3s;
}

.countdown-item:hover {
    transform: translateY(-5px);
    border-color: #D988A6;
}

.countdown-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #999;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border: 8px solid white;
}

.hero-image-wrapper img {
    width: 100%;
    display: block;
    transition: 1s;
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .countdown-container {
        gap: 10px;
    }
    .countdown-item {
        min-width: 70px;
        padding: 15px 10px;
    }
    .countdown-number {
        font-size: 1.6rem;
    }
}
