* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    
    --ivory: #F6F1EB;
    --rose-nude: #E7C9C3;
    --beige-sand: #E2D3C3;
    --rose-antique: #C6A3A0;
    --gold-diamond: #C9A24D;
    --champagne: #9E7C3A;
    --graphite: #1C1C1C;
    --stone: #4A4A4A;
    --rose-primary: var(--rose-nude);
    --rose-dark: var(--rose-antique);
    --rose-light: var(--ivory);
    --rose-accent: var(--champagne);
    --white: var(--ivory);
    --dark: var(--graphite);
}
body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}
html {
    width: 100%;
    overflow-x: hidden;
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(
        to bottom,
        rgba(246, 241, 235, 0.96),
        rgba(231, 201, 195, 0.45)
    );
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(158, 124, 58, 0.35);
    animation: slideDown 0.8s ease-out;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}
.hero {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(212, 165, 165, 0.08) 0%, rgba(255,255,255,1) 100%),
        radial-gradient(circle at 20% 80%, rgba(212, 165, 165, 0.15) 0%, transparent 50%);
    overflow: hidden;
    margin-top: 80px;
}
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 165, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}
.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    color: var(--rose-accent);
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(201, 124, 124, 0.1);
}
.hero-subtitle {
    font-size: 1.6rem;
    color: var(--dark);
    font-weight: 300;
    letter-spacing: 0.2em;
    opacity: 0.9;
}
.story-section {
    padding: 8rem 3rem;
    background: var(--white);
    position: relative;
}
.story-container {
    max-width: 1200px;
    margin: 0 auto;
}
.story-intro {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease-out both;
}
.story-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--rose-accent);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}
.story-intro .subtitle {
    font-size: 1.5rem;
    color: var(--dark);
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}
.story-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}
.story-text p {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--dark);
    opacity: 0.85;
    margin-bottom: 1.5rem;
}
.story-image {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(212, 165, 165, 0.25), rgba(245, 230, 230, 0.4));
    border: 3px solid var(--rose-primary);
    overflow: hidden;
    transition: all 0.4s ease;
}
.story-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.photo-credit {
    position: absolute;
    right: 0.8rem;
    bottom: 0.8rem;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--graphite);
    background: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}
.story-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 165, 165, 0.4);
}
.story-image::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    color: var(--rose-accent);
    opacity: 0.3;
}
.story-content:nth-child(even) {
    direction: rtl;
}
.story-content:nth-child(even) > * {
    direction: ltr;
}
.values-section {
    padding: 8rem 3rem;
    background: linear-gradient(to bottom, var(--white), var(--rose-light));
    position: relative;
    
}
.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--rose-primary), transparent);
}
.values-container {
    max-width: 1400px;
    margin: 0 auto;
}
.values-title {
    text-align: center;
    margin-bottom: 5rem;
}
.values-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--rose-accent);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}
.value-card {
    padding: 3rem;
    background: var(--white);
    border-left: 4px solid var(--rose-accent);
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInUp 0.8s ease-out both;
}
.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }
.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 165, 165, 0.2);
    border-left-width: 6px;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 165, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.value-card:hover::before {
    opacity: 1;
}
.value-icon {
    font-size: 3.5rem;
    color: var(--rose-accent);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}
.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}
.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}
.value-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark);
    opacity: 0.8;
}
.timeline-section {
    padding: 8rem 3rem;
    background: var(--white);
}
.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
}
.timeline-title {
    text-align: center;
    margin-bottom: 5rem;
}
.timeline-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--rose-accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.timeline {
    position: relative;
    padding-left: 2rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--rose-accent), rgba(212, 165, 165, 0.3));
}
.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out both;
}
.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item::before {
    content: '◆';
    position: absolute;
    left: -4.5rem;
    top: 0;
    width: 30px;
    height: 30px;
    color: var(--rose-accent);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--rose-accent);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}
.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}
.timeline-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark);
    opacity: 0.85;
}
.team-section {
    padding: 8rem 3rem;
    background: linear-gradient(to bottom, var(--rose-light), var(--white));
}
.team-container {
    max-width: 1400px;
    margin: 0 auto;
}
.team-title {
    text-align: center;
    margin-bottom: 5rem;
}
.team-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--rose-accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.team-title p {
    font-size: 1.4rem;
    color: var(--dark);
    opacity: 0.8;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}
.team-member {
    text-align: center;
    transition: transform 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
}
.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.3s; }
.team-member:hover {
    transform: translateY(-10px);
}
.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 165, 165, 0.35), rgba(245, 230, 230, 0.5));
    border: 4px solid var(--rose-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--rose-accent);
    transition: all 0.3s ease;
}
.team-member:hover .team-photo {
    border-width: 6px;
    box-shadow: 0 15px 30px rgba(212, 165, 165, 0.35);
}
.team-member h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.team-role {
    font-size: 1.2rem;
    color: var(--rose-accent);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.team-bio {
    font-size: 1.1rem;
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.6;
}
.cta-section {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, rgba(212, 165, 165, 0.12) 0%, var(--white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 165, 165, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateX(-50%);
}
.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--rose-accent);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.cta-content p {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0.85;
}
.cta-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: var(--rose-accent);
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 2px solid var(--rose-accent);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
.cta-button:hover::before {
    width: 400px;
    height: 400px;
}
.cta-button:hover {
    color: var(--rose-accent);
    border-color: var(--rose-accent);
}
.cta-button span {
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) and (min-width: 769px) {
    .hero { height: auto; min-height: 72vh; padding: 8rem 1.6rem 3.2rem; margin-top: 72px; }
    .hero h1 { font-size: 3.6rem; letter-spacing: 0.1em; }
    .hero-subtitle { font-size: 1.25rem; }

    .story-section,
    .values-section,
    .timeline-section,
    .team-section,
    .cta-section {
        padding: 6rem 2rem;
    }

    .story-intro h2,
    .values-title h2,
    .timeline-title h2,
    .team-title h2,
    .cta-content h2 {
        font-size: 3rem;
    }

    .story-content { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; }
    .story-text p { font-size: 1.15rem; line-height: 1.8; }

    .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.4rem; }
    .value-card { padding: 2.4rem; }
    .value-card h3 { font-size: 1.7rem; }
    .value-card p { font-size: 1.1rem; }

    .timeline { padding-left: 1.8rem; }
    .timeline-item::before { left: -3.2rem; }

    .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.4rem; }
    .team-photo { width: 180px; height: 180px; }
    .team-member h3 { font-size: 1.6rem; }
}
@media (max-width: 1366px) and (max-height: 700px) {
    .hero { min-height: 68vh; padding: 7.2rem 1.4rem 2.6rem; margin-top: 68px; }
    .hero h1 { font-size: 3.2rem; letter-spacing: 0.08em; }
    .hero-subtitle { font-size: 1.15rem; }
    .story-section,
    .values-section,
    .timeline-section,
    .team-section,
    .cta-section { padding: 5rem 1.6rem; }
    .story-intro h2,
    .values-title h2,
    .timeline-title h2,
    .team-title h2,
    .cta-content h2 { font-size: 2.7rem; }
    .story-content { gap: 2.6rem; }
    .story-text p { font-size: 1.08rem; line-height: 1.75; }
    .values-grid { gap: 2rem; }
    .value-card { padding: 2.1rem; }
    .timeline { padding-left: 1.6rem; }
    .timeline-item::before { left: -3rem; }
    .team-grid { gap: 2rem; }
    .team-photo { width: 170px; height: 170px; }
}
@media (max-width: 768px) {
  
  html, body {
    width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
  }
  
  .hero {
    height: auto;
    min-height: 70vh;
    padding: 6rem 1rem 3rem;
  }
  .hero h1 {
    font-size: 2.2rem;
    letter-spacing: 0.08em;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    text-align: center;
  }
  .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-align: center;
  }
  .story-section,
  .values-section,
  .timeline-section,
  .team-section,
  .cta-section {
    
    overflow-x: hidden;
    width: 100%;
  }
  
  .values-title h2,
  .story-intro h2,
  .timeline-title h2,
  .team-title h2,
  .cta-content h2 {
    font-size: 2.2rem;
    letter-spacing: 0.05em;      
    word-break: break-word;     
    overflow-wrap: break-word;
    hyphens: auto;
    text-align: center;
  }
  
  .story-intro .subtitle,
  .story-text p,
  .value-card p,
  .timeline-content p,
  .team-bio,
  .cta-content p {
    font-size: 1.05rem;
    line-height: 1.7;
  }
  .story-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .story-container{
    width: 100%;
  }
  .story-image{
    width: 100%;
  }
  .story-image img{
    width: 100vw;
  }
  
  .values-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0.5rem;
  }
  .values-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .value-card {
    width: 100%;
    padding: 2rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .value-card h3 {
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .timeline {
    padding-left: 1.5rem;
  }
  .timeline-item::before {
    left: -2.2rem;
  }
  
  .team-container,
  .cta-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* Telas até ~390px */
@media (max-width: 420px) {
  .hero{
    padding: 5.8rem 0.85rem 2.6rem;
  }
  .hero h1{
    font-size: 2rem;
    letter-spacing: 0.06em;
  }
  .hero-subtitle{ font-size: 0.98rem; }
  .story-section,
  .values-section,
  .timeline-section,
  .team-section,
  .cta-section{
    padding: 4.2rem 1rem;
  }
  .story-intro h2,
  .values-title h2,
  .timeline-title h2,
  .team-title h2,
  .cta-content h2{
    font-size: 1.8rem;
    letter-spacing: 0.02em;
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
    text-align: center;
    max-width: 100%;
  }
  .story-intro .subtitle,
  .story-text p,
  .value-card p,
  .timeline-content p,
  .team-bio,
  .cta-content p{
    font-size: 1rem;
    line-height: 1.6;
  }
  .story-text h3{ font-size: 1.6rem; }
  .value-card{ padding: 1.8rem; }
  .value-card h3{ font-size: 1.5rem; }
  .timeline-year{ font-size: 2rem; }
  .timeline-content h3{ font-size: 1.4rem; }
  .team-photo{ width: 160px; height: 160px; }
  .team-member h3{ font-size: 1.5rem; }
  .cta-button{ padding: 1rem 2.6rem; letter-spacing: 0.12em; }
}
/* Telas ultrapequenas (<320px) */
@media (max-width: 320px){
  .cta-content h2{
    font-size: 1.65rem;
    letter-spacing: 0.01em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
  .cta-content p{
    font-size: 0.95rem;
  }
}
