/*
Theme Name: Carrijo Engenharia
Theme URI: https://carrijoengenharia.online/
Author: Carrijo Engenharia
Description: Homepage institucional simples — Carrijo Engenharia e Construções.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: carrijo-engenharia
Tags: one-column, custom-colors, featured-images
*/

:root {
  --gold: #c5a059;
  --gold-light: #d4b87a;
  --dark: #0f172a;
  --dark-soft: #1e293b;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-500: #64748b;
  --slate-700: #334155;
  --max: 72rem;
  --radius: 1rem;
  --shadow: 0 24px 48px -20px rgba(15, 23, 42, 0.35);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.carrijo-landing {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--slate-50);
  color: var(--dark);
  line-height: 1.65;
}

.carrijo-root img {
  max-width: 100%;
  height: auto;
  display: block;
}

.carrijo-root a {
  color: inherit;
  text-decoration: none;
}

/* Header */
.carrijo-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.carrijo-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.carrijo-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.carrijo-logo__mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}

.carrijo-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.2s;
}

.carrijo-nav a:hover { color: var(--gold-light); }

/* Hero */
.carrijo-hero {
  min-height: 92vh;
  display: grid;
  align-items: center;
  position: relative;
  color: #fff;
  padding: 6rem 1.5rem 4rem;
  background:
    linear-gradient(120deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.55) 55%, rgba(15, 23, 42, 0.75) 100%),
    url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
}

.carrijo-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.carrijo-hero__label {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(197, 160, 89, 0.45);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.carrijo-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 1.08;
  font-weight: 600;
  max-width: 14ch;
  margin: 0 0 1.25rem;
}

.carrijo-hero p.lead {
  max-width: 36rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 2rem;
}

.carrijo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.carrijo-btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  box-shadow: 0 12px 30px -10px rgba(197, 160, 89, 0.65);
}

.carrijo-btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(197, 160, 89, 0.75);
}

/* Values */
.carrijo-values {
  padding: 5rem 1.5rem;
  background: #fff;
}

.carrijo-values__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.carrijo-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.carrijo-section-head h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.75rem;
  color: var(--dark);
}

.carrijo-section-head p {
  margin: 0;
  color: var(--slate-500);
}

.carrijo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.carrijo-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow);
}

.carrijo-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--dark);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.carrijo-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.carrijo-card p {
  margin: 0;
  color: var(--slate-700);
  font-size: 0.95rem;
}

/* About strip */
.carrijo-about {
  padding: 4.5rem 1.5rem;
  background: var(--dark);
  color: #fff;
}

.carrijo-about__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.carrijo-about h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin: 0 0 1rem;
}

.carrijo-about p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.carrijo-about__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 280px;
}

.carrijo-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.carrijo-footer {
  background: var(--dark-soft);
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

.carrijo-footer strong {
  color: #fff;
  display: block;
  margin-bottom: 0.35rem;
}

.carrijo-footer p {
  margin: 0.35rem 0;
}

@media (max-width: 900px) {
  .carrijo-nav { display: none; }
  .carrijo-grid { grid-template-columns: 1fr; }
  .carrijo-about__inner { grid-template-columns: 1fr; }
}
