* {
    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(--ivory);
    color: var(--graphite);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
header, section, footer { width: 100%; }
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: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(231, 201, 195, 0.42) 0%,
            rgba(246, 241, 235, 1) 60%
        ),
        radial-gradient(
            circle at 18% 78%,
            rgba(198, 163, 160, 0.32) 0%,
            transparent 55%
        ),
        radial-gradient(
            circle at 82% 22%,
            rgba(201, 162, 77, 0.16) 0%,
            transparent 55%
        );
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(158, 124, 58, 0.14) 0%,
        transparent 72%
    );
    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;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero-content img {
    width: 50%;
    height: 50%;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    color: var(--champagne);
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(158, 124, 58, 0.18);
}
.hero-subtitle {
    font-size: 1.8rem;
    color: var(--stone);
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 3rem;
    opacity: 0.95;
}
.hero-description {
    font-size: 1.3rem;
    color: var(--graphite);
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.88;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.cta-button {
    display: inline-block;
    padding: 1.15rem 3.6rem;
    background: linear-gradient(135deg, var(--gold-diamond), var(--champagne));
    color: var(--ivory);
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 2px solid rgba(201, 162, 77, 0.55);
    border-radius: 999px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(158, 124, 58, 0.28), inset 0 1px 0 rgba(255,255,255,0.4);
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(246, 241, 235, 0.95);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
.cta-button:hover::before {
    width: 420px;
    height: 420px;
}
.cta-button:hover {
    color: var(--champagne);
    border-color: var(--champagne);
}
.cta-button span {
    position: relative;
    z-index: 1;
}
.features {
    padding: 8rem 3rem;
    background: linear-gradient(to bottom, var(--ivory), rgba(231, 201, 195, 0.18));
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.features-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3.5rem;
}
.features-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--champagne);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}
.features-subtitle {
    font-size: 1.15rem;
    color: var(--stone);
    line-height: 1.6;
    opacity: 0.95;
}
.features-carousel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 0.75rem;
}
.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(158, 124, 58, 0.55), transparent);
}
.features-grid {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-padding: 1rem;
    padding: 0.5rem 0.25rem 1.25rem;
    scroll-behavior: auto;
}
.features-grid.no-snap { scroll-snap-type: none; }
.features-grid::-webkit-scrollbar { height: 0; width: 0; }
.features-grid { scrollbar-width: none; }
.feature-dots {
    display: inline-flex;
    gap: 0.55rem;
    justify-content: center;
    align-items: center;
    margin: 0.4rem auto 0;
    padding: 0.25rem 0.5rem 0.1rem;
    color: var(--champagne);
}
.feature-dot {
    border: 0;
    padding: 0;
    cursor: pointer;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.38;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.feature-dot.is-active {
    opacity: 1;
    transform: scale(1.08);
}
.feature {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
    scroll-snap-align: center;
    flex: 0 0 clamp(260px, 32vw, 360px);
}
.feature:nth-child(1) { animation-delay: 0.1s; }
.feature:nth-child(2) { animation-delay: 0.2s; }
.feature:nth-child(3) { animation-delay: 0.3s; }
/* Removemos o efeito de levantar no hover do carrossel de features */
.feature:hover {
    transform: translateY(0);
}
.feature-icon {
    font-size: 4rem;
    color: var(--gold-diamond);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}
.feature-icon.inline-carousel {
    width: 5em;
    height: 5em;
    margin: 0 auto 1.5rem;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    background: rgba(0,0,0,0.02);
}
.feature-icon img {
    width: 5em;
    height: 5em;
}
.inline-carousel {
    position: relative;
    overflow: hidden;
}
.inline-track {
    display: flex;
    width: 100%;
    height: 100%;
    transform: translateX(0);
    transition: transform 0.45s ease;
}
.inline-track > * {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inline-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s ease, background 0.2s ease;
    padding: 0;
    line-height: 1;
    backdrop-filter: blur(3px);
}
.inline-nav:hover { background: rgba(0, 0, 0, 0.35); }
.inline-nav:disabled { opacity: 0.45; cursor: default; }
.inline-nav.prev { left: 6px; }
.inline-nav.next { right: 6px; }
.inline-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 6px 2px 0;
    width: 100%;
    color: inherit;
}
.inline-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: currentColor;
    opacity: 0.5;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.inline-dot.is-active {
    opacity: 1;
    transform: scale(1.15);
}
.feature .inline-dots { color: var(--gold-diamond); }
.feature-nav {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 77, 0.4);
    background: rgba(246, 241, 235, 0.95);
    color: var(--champagne);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.65);
    transition: all 0.25s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.feature-nav:hover {
    transform: translateY(calc(-50% - 1px));
    border-color: rgba(201, 162, 77, 0.7);
    color: var(--gold-diamond);
}
.feature-nav.prev { left: 0.75rem; }
.feature-nav.next { right: 0.75rem; }
.feature-nav:disabled {
    opacity: 0.45;
    cursor: default;
    transform: none;
}
/* Removemos o aumento do ícone ao passar o mouse */
.feature:hover .feature-icon {
    transform: scale(1);
}
.feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--graphite);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}
.feature p {
    font-size: 1.2rem;
    color: var(--stone);
    line-height: 1.8;
    opacity: 0.95;
}
@media (max-width: 1200px) and (min-width: 769px) {
    .hero {
        height: auto;
        min-height: 78vh;
        padding: 8.5rem 1.6rem 3.6rem;
    }
    .hero h1 {
        font-size: 4rem;
        letter-spacing: 0.12em;
    }
    .hero-subtitle { font-size: 1.35rem; }
    .hero-description {
        font-size: 1.15rem;
        max-width: 620px;
    }
    /* Laptops/notebooks: dá mais presença ao logo */
    .hero-content img { width: 60%; max-width: 430px; }
    .cta-button { padding: 1rem 3rem; }

    .features { padding: 6rem 2.2rem; }
    .features-grid {
        grid-template-columns: repeat(2, minmax(260px, 1fr));
        gap: 3rem;
    }

    .gallery { padding: 6rem 0; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1.5rem;
        gap: 1.6rem;
    }
    .gallery h2 { font-size: 3rem; }

    .testimonials { padding: 6rem 2.2rem; }
    .testimonials-container {
        grid-template-columns: repeat(2, minmax(320px, 1fr));
        gap: 2.2rem;
    }
    .testimonials h2 { font-size: 3rem; }
}
@media (max-width: 1366px) and (max-height: 700px) {
    .hero {
        min-height: 70vh;
        padding: 7.2rem 1.4rem 2.6rem;
    }
    .hero h1 { font-size: 3.6rem; letter-spacing: 0.1em; }
    .hero-subtitle { font-size: 1.25rem; margin-bottom: 1.6rem; }
    .hero-description { font-size: 1.08rem; margin-bottom: 2rem; }
    /* Telas largas porém baixas (notebooks 1366x768, por exemplo) */
    .hero-content img { width: 55%; max-width: 400px; }
    .cta-button { padding: 0.95rem 2.5rem; }

    .features { padding: 5.2rem 1.6rem; }
    .features-grid { gap: 2.4rem; }
    .gallery { padding: 5.2rem 0; }
    .gallery h2 { font-size: 2.8rem; }
    .gallery-grid { padding: 0 1.2rem; gap: 1.3rem; }
    .testimonials { padding: 5.2rem 1.6rem; }
    .testimonials h2 { font-size: 2.8rem; }
}
@media (min-width: 1200px) {
    /* Exibe duas skills por vez no carrossel em telas grandes */
    .features-grid {
        max-width: 1280px;
    }
    .feature {
        flex: 0 0 calc((100% - 2.5rem) / 2);
        max-width: calc((100% - 2.5rem) / 2);
    }
    .feature-icon img {
        width: 6.5em;
        height: 6.5em;
    }
}
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 3rem;
    }
}
.gallery {
    padding: 8rem 0;
    background: linear-gradient(to bottom, rgba(231, 201, 195, 0.28), var(--ivory));
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.gallery h2, .map-section h2{
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    color: var(--champagne);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.gallery-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--stone);
    margin-bottom: 4rem;
    opacity: 0.95;
}
.gallery-grid {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.gallery-item {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(246, 241, 235, 0.55),
        rgba(226, 211, 195, 0.40)
    );
    cursor: pointer;
    border: 2px solid rgba(201, 162, 77, 0.25);
    transition: all 0.4s ease;
}
.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(158, 124, 58, 0.18);
    border-color: var(--gold-diamond);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonials {
    padding: 8rem 3rem;
    background: var(--ivory);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    color: var(--champagne);
    letter-spacing: 0.1em;
    margin-bottom: 4rem;
    text-transform: uppercase;
}
.testimonials-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}
.testimonial {
    padding: 3rem;
    background: linear-gradient(
        135deg,
        rgba(231, 201, 195, 0.22),
        rgba(246, 241, 235, 0.30)
    );
    border-left: 4px solid var(--champagne);
    position: relative;
    animation: fadeInUp 0.8s ease-out both;
}
.testimonial:nth-child(1) { animation-delay: 0.1s; }
.testimonial:nth-child(2) { animation-delay: 0.2s; }
.testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 6rem;
    color: rgba(201, 162, 77, 0.28);
    font-family: 'Playfair Display', serif;
}
.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--graphite);
    position: relative;
    z-index: 1;
}
.testimonial-author {
    font-weight: 600;
    color: var(--champagne);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}
@media (max-width: 768px){
  
  html, body{
    width: 100%;
    overflow-x: hidden;
    margin: 0;
  }
  
  h1, h2, h3, p, a, li, span{
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }
  /* N1 (h1) sem quebra forçada em mobile */
  h1{
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
  
  body{
    display: block;
    align-items: initial;
  }
  
  header{
    width: 100%;
  }
  nav{
    width: 100%;
    max-width: 100%;
    padding: 0.9rem 1rem;
  }
  
  .hero{
    height: auto;
    min-height: 75vh;
    padding: 6.5rem 1.2rem 3rem;
    overflow: hidden;     
    position: relative;
  }
  
  .hero::before{
    content: none !important;
  }
  .hero-content{
    width: 100%;
    max-width: 680px;
    padding: 0;
  }
  .hero-content img{
    width: 70%;
    height: auto;
    max-width: 320px;
  }
  .hero h1{
    font-size: 2.6rem;
    letter-spacing: 0.08em;
    text-align: center;
  }
  .hero-subtitle{
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    margin-bottom: 2rem;
    text-align: center;
  }
  .hero-description{
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 2rem;
    padding: 0;
    text-align: center;
  }
  .cta-button{
    width: 100%;
    max-width: 360px;
    padding: 1.05rem 2.4rem;
    font-size: 1rem;
    text-align: center;
  }
  
  .features{
    width: 100%;
    padding: 5rem 1.2rem;
  }
  .features-header { margin-bottom: 2.4rem; }
  .features-header h2 {
    font-size: 2.3rem;
    letter-spacing: 0.06em;
  }
  .features-subtitle { font-size: 1.02rem; }
  .features-carousel { gap: 0.6rem; }
  .features-carousel { padding: 0 0.6rem; }
  .features-grid{
    width: 100%;
    max-width: 100%;
    gap: 1.4rem;
    padding: 0.5rem 0 1rem;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
  }
  .feature{
    padding: 1rem;
    flex: 0 0 80vw;
  }
  .feature-nav{
    width: 40px;
    height: 40px;
  }
  .feature h3{
    font-size: 1.7rem;
  }
  .feature p{
    font-size: 1.05rem;
    line-height: 1.7;
  }
  
  .gallery{
    width: 100%;
    padding: 6rem 0;
  }
  .gallery h2, .map-section h2{
    font-size: 2.4rem;
    letter-spacing: 0.06em;
    padding: 0 1rem;
  }
  .gallery-subtitle{
    font-size: 1.05rem;
    padding: 0 1.2rem;
    margin-bottom: 3rem;
  }
  .gallery-grid{
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 1rem;
  }
  .gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .testimonials{
    width: 100%;
    padding: 6rem 1.2rem;
    flex-direction: column;
  }
  .testimonials h2{
    font-size: 2.4rem;
    letter-spacing: 0.06em;
    margin-bottom: 3rem;
    padding: 0 0.4rem;
  }
  .testimonials-container{
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .testimonial{
    padding: 2.2rem 1.6rem;
  }
  .testimonial::before{
    font-size: 4.5rem;
    top: 0.4rem;
    left: 1rem;
  }
  .testimonial-text{
    font-size: 1.05rem;
    line-height: 1.7;
  }
}
/* Telas muito estreitas (~390px) */
@media (max-width: 420px){
  nav { padding: 0.85rem 0.9rem; }
  .hero{
    padding: 6.2rem 1rem 2.6rem;
  }
  .hero h1{
    font-size: 2.1rem;
    letter-spacing: 0.06em;
  }
  .hero-subtitle{ font-size: 0.98rem; }
  .hero-description{
    font-size: 1rem;
    line-height: 1.6;
  }
  .cta-button{
    max-width: 320px;
    padding: 0.95rem 2rem;
    letter-spacing: 0.12em;
  }
  .features{
    padding: 4.2rem 1rem;
  }
  .feature{
    flex: 0 0 88vw;
    padding: 0.9rem;
  }
  .feature h3{ font-size: 1.55rem; }
  .feature p{ font-size: 1rem; line-height: 1.65; }
  .gallery{
    padding: 5rem 0;
  }
  .gallery h2, .map-section h2{
    font-size: 2.1rem;
  }
  .gallery-subtitle{
    font-size: 1rem;
    margin-bottom: 2.4rem;
  }
  .gallery-grid{
    gap: 1rem;
    padding: 0 0.85rem;
  }
  .testimonials{
    padding: 5rem 1rem;
  }
  .testimonial{
    padding: 2rem 1.4rem;
  }
  .testimonial::before{ font-size: 4rem; }
  .testimonial-text{ font-size: 1rem; }
}
/* Telas ultrapequenas (<320px) */
@media (max-width: 320px){
  .features-header h2{
    font-size: 1.85rem;
    letter-spacing: 0.04em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
  .features-subtitle{ font-size: 0.95rem; }
  .feature{ flex: 0 0 92vw; }
}
