:root {
    --dark-blue: #2d3245; 
    --copper: #a9755f;     
    --white: #ffffff;
    --light-gray: #f7f7f7;
    --light-rose: #f3e9e5; 
    --text-color: #333;
    --font-title: 'Montserrat', sans-serif;
    --font-text: 'Lato', sans-serif;
    --title-size: clamp(1.6rem, 2.5vw + 1rem, 2.8rem);
    --section-title-size: clamp(1.75rem, 3.2vw + 1rem, 3.2rem);
    --base-font-size: clamp(0.95rem, 1.2vw + 0.6rem, 1.1rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-text), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: var(--white); color: var(--text-color); line-height: 1.6; font-size: var(--base-font-size); }

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    background: #fff;
    color: var(--dark-blue);
    padding: 10px 16px;
    z-index: 10000;
    border: 2px solid var(--dark-blue);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
}
.skip-link:focus { left: 16px; top: 16px; }

.hero-section { background-color: var(--dark-blue); padding: 24px 16px; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px; flex-wrap: wrap; }
.hero-text { flex: 1 1 50%; color: var(--white); min-width: 260px; padding-right: 18px; }
.hero-text .kicker { display: block; color: var(--copper); font-weight: 800; margin-bottom: 10px; letter-spacing: 1px; text-transform: uppercase; font-size: clamp(1.15rem, 2.6vw + 0.2rem, 2rem); }
.hero-text h1 { font-family: var(--font-title), sans-serif; font-size: clamp(1.4rem, 3.5vw + 0.2rem, 2.8rem); margin-bottom: 12px; color: var(--white); line-height: 1.08; }
.hero-text p.lead { font-size: clamp(0.98rem, 1.2vw + .3rem, 1.05rem); color: rgba(255,255,255,0.92); line-height: 1.45; margin-bottom: 18px; }

.hero-cta-inline { display: inline-block; background-color: var(--copper); color: var(--white); padding: 10px 20px; border-radius: 6px; text-decoration: none; font-weight: 700; }

.hero-image { position: relative; flex: 0 0 45%; max-width: 48%; min-width: 260px; aspect-ratio: 4 / 5; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; display: block; object-fit: contain; object-position: center; transition: transform 0.25s ease; }

@media (max-width: 860px) {
    .hero-inner { flex-direction: column; padding: 18px; gap: 12px; }
    .hero-image { width: 100%; max-width: 100%; flex-basis: auto; order: 0; aspect-ratio: auto; }
    .hero-image img { height: auto; object-fit: contain; object-position: center; }
    .hero-text { width: 100%; text-align: left; padding: 8px 6px; order: 1; }
    .hero-text .kicker { font-size: clamp(1rem, 4vw, 1.6rem); }
    .hero-text h1 { font-size: clamp(1.25rem, 5vw, 1.9rem); }
    .hero-text p.lead { font-size: 0.98rem; }
    .atuacao-card img { height: auto; max-height: none; }
}

@media (max-width: 1024px) {
    .hero-section { height: auto !important; min-height: auto !important; padding-top: 18px; padding-bottom: 18px; }
    .hero-image { max-height: 56vh; }
    .hero-image img { height: 100%; object-fit: contain; object-position: center; }
}

@media (max-width: 860px) {
    .hero-section { height: auto !important; padding: 14px 12px; }
    .hero-inner { gap: 12px; }
    .hero-image { max-height: 50vh; }
    .hero-image img { height: auto; object-fit: contain; object-position: center; }
}

@media (max-width: 420px) {
    .hero-section { padding: 12px 10px; }
    .hero-image { max-height: 42vh; }
    .hero-image img { height: auto; object-fit: contain; object-position: center; }
}

@media (max-width: 1024px) {
    .hero-section { height: auto !important; min-height: 0 !important; }
}
@media (max-width: 768px) {
    .hero-section { height: auto !important; min-height: 0 !important; padding-top: 14px; padding-bottom: 14px; }
}
@media (max-width: 420px) {
    .hero-section { height: auto !important; min-height: 0 !important; padding-top: 10px; padding-bottom: 10px; }
}

.hero-image, .hero-image img { max-width: 100%; box-sizing: border-box; }
.hero-image img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }

.atuacao-card img { width: 180px; height: auto; max-height: 180px; object-fit: cover; object-position: center; border-radius: 5px; }

.cta-banner-section { padding: 40px 20px; background-color: var(--dark-blue); text-align: center; }

.cta-button { background-color: var(--copper); color: var(--white); padding: 14px 30px; border-radius: 6px; text-decoration: none; font-family: var(--font-title), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-weight: 700; font-size: 1.05rem; text-transform: uppercase; transition: transform 0.25s ease, box-shadow 0.25s ease; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12); display: inline-block; }
.cta-button:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18); }

.client-rating { margin-top: 15px; text-align: center; font-family: var(--font-title), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }
.client-rating .stars { color: #d4af37; font-size: 24px; letter-spacing: 3px; display: block; }
.client-rating p { font-size: 14px; color: var(--white); margin-top: 5px; font-weight: 400; }

.atuacao-section { padding: 80px 20px; background-color: var(--white); text-align: center; }
.section-title { font-family: var(--font-title), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-size: var(--section-title-size); color: var(--dark-blue); margin-bottom: 50px; font-weight: 800; }

.atuacao-container { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; max-width: 1200px; margin: 0 auto; }
.atuacao-card { background-color: var(--white); border-radius: 8px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06); padding: 20px; flex: 1 1 240px; transition: transform 0.25s ease, box-shadow 0.25s ease; text-align: center; }
.atuacao-card:hover { transform: translateY(-8px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
.atuacao-card img { width: 180px; height: auto; max-height: 180px; object-fit: cover; object-position: top; border-radius: 5px; margin-bottom: 20px; }
.atuacao-card h3 { font-family: var(--font-title), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-size: 1.2rem; color: var(--dark-blue); margin-bottom: 12px; }

.conexao-section { padding: 80px 20px; background-color: var(--light-rose); }
.conexao-container { display: flex; align-items: center; justify-content: center; gap: 40px; max-width: 1100px; margin: 0 auto; }
.conexao-imagem { flex-basis: 40%; }
.conexao-imagem img { width: 100%; border-radius: 8px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12); display: block; }
.conexao-texto { flex-basis: 60%; }
.conexao-texto h2 { font-family: var(--font-title), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-size: var(--title-size); color: var(--dark-blue); margin-bottom: 18px; line-height: 1.25; }
.conexao-texto p { font-size: 1rem; margin-bottom: 28px; color: #333; }
.cta-button-secondary { border: 2px solid var(--copper); color: var(--copper); background-color: transparent; padding: 12px 28px; border-radius: 6px; text-decoration: none; font-family: var(--font-title), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-weight: 700; font-size: 0.95rem; text-transform: uppercase; transition: all 0.25s ease; display: inline-block; }
.cta-button-secondary:hover { background-color: var(--copper); color: var(--white); transform: translateY(-4px); }

.contato-final-section { padding: 60px 20px; text-align: center; background-color: var(--light-gray); }
.contato-final-section h2 { font-family: var(--font-title), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-size: var(--section-title-size); color: var(--dark-blue); margin-bottom: 18px; }
.contato-final-section p { font-size: 1rem; max-width: 700px; margin: 0 auto 20px auto; color: #555; }

.main-footer { background-color: var(--dark-blue); color: rgba(255, 255, 255, 0.9); padding: 30px 20px; text-align: center; }
.main-footer h3 { font-family: var(--font-title), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--white); margin-bottom: 8px; }
.main-footer p { font-size: 0.95rem; margin-bottom: 6px; }

.social-link-area { margin: 16px 0 8px; }
.instagram-btn { display: inline-block; text-decoration: none; color: #d4af37; border: 1px solid #d4af37; padding: 8px 18px; border-radius: 50px; font-family: var(--font-title), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-size: 14px; font-weight: bold; transition: 0.25s; }
.instagram-btn:hover { background-color: #d4af37; color: var(--dark-blue); transform: translateY(-2px); }

.whatsapp-floating { position: fixed; right: 20px; bottom: 20px; background-color: #25D366; color: #ffffff; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); z-index: 9999; transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease; }
.whatsapp-floating:hover { transform: scale(1.05); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25); }
.whatsapp-floating img.whatsapp-icon-img { width: 28px; height: 28px; display: block; }

@media (max-width: 768px) {
    .whatsapp-floating { right: 18px; bottom: 18px; width: 64px; height: 64px; }
    .whatsapp-floating img.whatsapp-icon-img { width: 32px; height: 32px; }
}

@media (max-height: 500px) {
     .whatsapp-floating { bottom: 12px; right: 12px; }
}

@media (max-width: 1024px) {
    .conexao-container { gap: 24px; }
    .conexao-imagem { flex-basis: 45%; }
    .conexao-texto { flex-basis: 55%; }
    .hero-section { height: 55vh; background-position: center 40%; }
}

@media (max-width: 768px) {
    .section-title, .conexao-texto h2, .contato-final-section h2 { font-size: 1.8rem; }
    .hero-section { height: 38vh; background-size: contain; background-repeat: no-repeat; background-position: center top; }
    .atuacao-container { flex-direction: column; gap: 20px; }
    .atuacao-card { flex-basis: auto; }
    .conexao-container { flex-direction: column; text-align: center; }
    .conexao-imagem, .conexao-texto { width: 100%; }
    .conexao-texto p { margin: 0 auto 20px auto; }
    .cta-button, .cta-button-secondary { padding: 12px 20px; font-size: 0.95rem; }
}

@media (max-width: 420px) {
    :root { --section-title-size: 1.6rem; --title-size: 1.2rem; }
    .hero-section { height: 32vh; background-size: contain; background-position: center top; }
    .atuacao-card img { height: 200px; }
    .client-rating .stars { font-size: 20px; }
}

.premium-card-design { display: flex; flex-direction: column; align-items: center; width: fit-content; margin-bottom: 30px; position: relative; }
.logo-wrapper { position: relative; z-index: 2; margin-bottom: -55px; margin-left: -15px; }
.big-premium-logo { width: 180px; height: auto; display: block; filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.2)); }
.name-wrapper { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; padding-top: 20px; }
.premium-name { font-family: 'Montserrat', sans-serif; color: var(--white); font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 700; text-transform: uppercase; letter-spacing: 3px; line-height: 1; margin: 0; padding-top: 15px; white-space: nowrap; text-align: center; }
.gap-for-p { display: inline-block; width: 15px; }
.separator-line { width: 120%; height: 1px; background: linear-gradient(90deg, rgba(169, 117, 95, 0) 0%, var(--copper) 50%, rgba(169, 117, 95, 0) 100%); margin: 10px 0; }
.premium-role { font-family: 'Montserrat', sans-serif; color: var(--copper); font-size: 1.1rem; font-weight: 500; text-transform: uppercase; letter-spacing: 10px; display: block; text-align: center; margin-left: 10px; }

@media (max-width: 768px) {
    .premium-card-design { width: 100%; align-items: center; }
    .logo-wrapper { margin-bottom: -40px; margin-left: 0; }
    .big-premium-logo { width: 140px; }
    .premium-name { font-size: 2rem; letter-spacing: 1px; }
    .separator-line { width: 80%; }
    .premium-role { font-size: 0.9rem; letter-spacing: 6px; }
}

.dev-credits { margin-top: 20px; font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.dev-credits a { color: #fff; text-decoration: none; font-weight: 700; transition: color 0.3s; }
.dev-credits a:hover { color: var(--copper); text-decoration: underline; }