/* ============================================================================
   BIOMA TROPICAL CURITIBA - STYLESHEET
   
   Design Philosophy:
   - Natural, elegant, and welcoming aesthetic
   - Green and earthy tones with sophisticated typography
   - Clean, professional layout with feminine, light typography
   - Emphasis on natural materials and organic forms
   
   Color Palette:
   - Primary Green: #2d5f4f (forest green, grounding)
   - Secondary Green: #6b9d7d (sage green, calming)
   - Accent Terracotta: #c9a876 (warm earth tone)
   - Light Cream: #f5f3f0 (natural off-white)
   - Deep Charcoal: #3a3a3a (text, professional)
   
   Typography:
   - Display: Cormorant Garamond (elegant, feminine)
   - Body: Poppins (clean, modern, readable)
   ============================================================================ */

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #3a3a3a;
    background-color: #f5f3f0;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero {
    background: linear-gradient(135deg, #2d5f4f 0%, #1a3a2e 100%);
    color: #f5f3f0;
    padding: 120px 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(107, 157, 125, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(201, 168, 118, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    animation: fadeInDown 0.8s ease-out;
}

.hero__subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #c9a876;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero__description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 1.5rem;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.3rem;
    }
    
    .hero__description {
        font-size: 1rem;
    }
}

/* ============================================================================
   FEATURED CARD - SEMENTES (MAIN CTA)
   ============================================================================ */

.featured-card {
    background: linear-gradient(135deg, #c9a876 0%, #a68a78 100%);
    padding: 80px 2rem;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 95, 79, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.featured-card__container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.featured-card__content {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.featured-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #2d5f4f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.featured-card__description {
    font-size: 1.1rem;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.featured-card__benefits {
    font-size: 1rem;
    color: #6b9d7d;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 500;
}

.featured-card__button {
    display: inline-block;
    background: linear-gradient(135deg, #2d5f4f 0%, #1a3a2e 100%);
    color: #f5f3f0;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(45, 95, 79, 0.2);
    cursor: pointer;
    border: none;
}

.featured-card__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 95, 79, 0.3);
}

.featured-card__button:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .featured-card {
        padding: 50px 1.5rem;
        margin: 40px 0;
    }
    
    .featured-card__content {
        padding: 30px;
    }
    
    .featured-card__title {
        font-size: 2rem;
    }
    
    .featured-card__description {
        font-size: 1rem;
    }
}

/* ============================================================================
   SECTION TITLES & SUBTITLES
   ============================================================================ */

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #2d5f4f;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b9d7d;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* ============================================================================
   WORKSHOPS SECTION
   ============================================================================ */

.workshops {
    padding: 80px 2rem;
    background-color: #f5f3f0;
}

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

.workshop-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #c9a876;
}

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

.workshop-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #2d5f4f;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.workshop-card__time {
    font-size: 1rem;
    color: #c9a876;
    font-weight: 600;
    margin-bottom: 1rem;
}

.workshop-card__description {
    font-size: 0.95rem;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.workshop-card__button {
    display: inline-block;
    background: #6b9d7d;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.workshop-card__button:hover {
    background: #2d5f4f;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .workshops {
        padding: 50px 1.5rem;
    }
    
    .workshops__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================================
   GALLERY SECTION
   ============================================================================ */

.gallery {
    padding: 80px 2rem;
    background: linear-gradient(180deg, #f5f3f0 0%, #ede9e4 100%);
}

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

.gallery__item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery__item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery__image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
}

.gallery__item:hover .gallery__image {
    filter: brightness(1.1);
}

.gallery__caption {
    padding: 1.5rem;
    background: white;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #2d5f4f;
    font-weight: 600;
}

.gallery__cta {
    text-align: center;
}

.gallery__button {
    display: inline-block;
    background: linear-gradient(135deg, #2d5f4f 0%, #1a3a2e 100%);
    color: #f5f3f0;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(45, 95, 79, 0.2);
    border: none;
    cursor: pointer;
}

.gallery__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 95, 79, 0.3);
}

@media (max-width: 768px) {
    .gallery {
        padding: 50px 1.5rem;
    }
    
    .gallery__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery__image {
        height: 200px;
    }
}

/* ============================================================================
   COMING SOON SECTION
   ============================================================================ */

.coming-soon {
    padding: 80px 2rem;
    background: linear-gradient(135deg, #6b9d7d 0%, #2d5f4f 100%);
}

.coming-soon__card {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.coming-soon__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #2d5f4f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.coming-soon__description {
    font-size: 1rem;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.coming-soon__highlight {
    font-size: 0.95rem;
    color: #6b9d7d;
    font-weight: 600;
    margin-bottom: 2rem;
}

.coming-soon__form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.coming-soon__input {
    flex: 1;
    min-width: 200px;
    padding: 14px 20px;
    border: 2px solid #e0d9d0;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.coming-soon__input:focus {
    outline: none;
    border-color: #c9a876;
    box-shadow: 0 0 0 3px rgba(201, 168, 118, 0.1);
}

.coming-soon__submit {
    padding: 14px 30px;
    background: #2d5f4f;
    color: #f5f3f0;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coming-soon__submit:hover {
    background: #1a3a2e;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .coming-soon {
        padding: 50px 1.5rem;
    }
    
    .coming-soon__card {
        padding: 30px;
    }
    
    .coming-soon__title {
        font-size: 1.8rem;
    }
    
    .coming-soon__form {
        flex-direction: column;
    }
    
    .coming-soon__input,
    .coming-soon__submit {
        width: 100%;
    }
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.footer {
    background: #2d5f4f;
    color: #f5f3f0;
    padding: 60px 2rem 30px;
}

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

.footer__section {
    text-align: center;
}

.footer__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer__subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer__text {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

.footer__links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer__link {
    color: #c9a876;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer__link:hover {
    color: #f5f3f0;
    text-decoration: underline;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 1.5rem 20px;
    }
    
    .footer__content {
        gap: 2rem;
    }
    
    .footer__section {
        text-align: center;
    }
}

/* ============================================================================
   UTILITY & RESPONSIVE HELPERS
   ============================================================================ */

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .featured-card__title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* Smooth transitions for all interactive elements */
a, button, input {
    transition: all 0.3s ease;
}

/* Remove default button styles */
button {
    font-family: inherit;
}

/* Accessibility: Focus visible */
*:focus-visible {
    outline: 2px solid #c9a876;
    outline-offset: 2px;
}
