@font-face {
    font-family: 'ArialCustom';
    src: url('assets/fonts/Arial Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'ArialCustom';
    src: url('assets/fonts/Arial Bold Italic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'ArialBlackCustom';
    src: url('assets/fonts/Arial Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
:root {
  --wine: #a63032;
  --wine-dark: #7f2325;
  --yellow: #ffe8bc;
  --white: #ffffff;
  --gray: #f7f7f7;
  --gray-2: #ececec;
  --text: #242424;
  --muted: #666666;
  --dark: #111111;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "ArialCustom", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(166, 48, 50, 0.08);
}

.header-content {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: "ArialBlackCustom", Arial, sans-serif;
  font-size: 25px;
  color: var(--wine);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.logo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--yellow);
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 16px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: 0.25s ease;
}

.main-nav a:hover {
  color: var(--wine);
}

.btn-header {
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--wine);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn-header:hover {
  background: var(--wine-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--wine);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

/* HERO */

.hero {
  position: relative;
  padding: 88px 0 78px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 232, 188, 0.7), transparent 36%),
    linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -220px;
  top: -160px;
  border-radius: 50%;
  background: rgba(166, 48, 50, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.section-tag.light {
  background: rgba(255, 232, 188, 0.16);
  color: var(--yellow);
}

.hero h1 {
  max-width: 720px;
  font-family: "ArialBlackCustom", Arial, sans-serif;
  font-size: clamp(39px, 5vw, 68px);
  line-height: 1.02;
  color: var(--dark);
  letter-spacing: -1.6px;
}

.hero h1 strong {
  display: block;
  color: var(--wine);
  font-weight: 400;
}

.hero p {
  max-width: 650px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn-primary,
.btn-secondary,
.btn-contact,
.btn-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-primary,
.btn-contact {
  background: var(--wine);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(166, 48, 50, 0.25);
}

.btn-primary:hover,
.btn-contact:hover {
  background: var(--wine-dark);
  transform: translateY(-2px);
}

.btn-secondary,
.btn-instagram {
  background: var(--white);
  color: var(--wine);
  border: 1px solid rgba(166, 48, 50, 0.18);
}

.btn-secondary:hover,
.btn-instagram:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.hero-benefits div {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.hero-benefits strong {
  display: block;
  color: var(--wine);
  font-size: 14px;
  line-height: 1.35;
}

.hero-benefits span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.hero-image-wrapper {
  position: relative;
}

.hero-card {
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow);
  background: var(--gray);
  aspect-ratio: 4 / 5;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  left: -36px;
  bottom: 42px;
  max-width: 260px;
  padding: 22px;
  border-radius: 22px;
  background: var(--wine);
  color: var(--white);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.floating-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-weight: 800;
  font-size: 13px;
}

.floating-card strong {
  display: block;
  font-size: 20px;
}

.floating-card p {
  margin-top: 5px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
}

/* TRUST */

.trust-section {
  padding: 26px 0;
  background: var(--wine);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-grid div {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.trust-grid strong {
  display: block;
  color: var(--yellow);
  font-size: 16px;
}

.trust-grid span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

/* LAWYER */

.lawyer-section,
.services-section,
.locations-section,
.faq-section {
  padding: 96px 0;
}

.lawyer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.lawyer-image {
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.lawyer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lawyer-content h2,
.section-heading h2,
.problem-content h2,
.image-band-content h2,
.faq-intro h2,
.contact-content h2 {
  font-family: "ArialBlackCustom", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--dark);
}

.lawyer-content h2 strong {
  display: block;
  color: var(--wine);
  font-weight: 400;
}

.lawyer-content h3 {
  margin-top: 12px;
  font-size: 20px;
  color: var(--wine);
}

.lawyer-content p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

.lawyer-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
}

.lawyer-list div {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: var(--gray);
}

.lawyer-list span {
  flex: 0 0 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wine);
  color: var(--yellow);
  font-weight: 800;
}

.lawyer-list p {
  margin: 0;
  font-size: 15px;
}

/* PROBLEM */

.problem-section {
  padding: 90px 0;
  background: var(--wine);
  color: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.problem-content h2 {
  color: var(--white);
}

.problem-content p {
  margin-top: 18px;
  color: rgba(255,255,255,0.82);
  font-size: 17px;
}

.problem-card {
  padding: 36px;
  border-radius: 28px;
  background: var(--white);
  color: var(--text);
}

.problem-card h3 {
  font-size: 24px;
  color: var(--wine);
  margin-bottom: 18px;
}

.problem-card ul {
  display: grid;
  gap: 14px;
  padding-left: 20px;
  color: var(--muted);
}

/* SERVICES */

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.small {
  margin-bottom: 36px;
}

.section-heading p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.featured-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-featured-card {
  padding: 36px;
  border-radius: 30px;
  background: var(--gray);
  border: 1px solid rgba(166,48,50,0.08);
  transition: 0.25s ease;
}

.service-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-featured-card.highlighted {
  background: var(--wine);
  color: var(--white);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: var(--wine);
  color: var(--yellow);
  font-weight: 800;
}

.service-featured-card.highlighted .service-icon {
  background: var(--yellow);
  color: var(--wine);
}

.service-featured-card h3 {
  font-family: "ArialBlackCustom", Arial, sans-serif;
  font-size: 34px;
  line-height: 1.08;
  margin-bottom: 14px;
}

.service-featured-card p {
  color: var(--muted);
  margin-bottom: 20px;
}

.service-featured-card.highlighted p,
.service-featured-card.highlighted li {
  color: rgba(255,255,255,0.82);
}

.service-featured-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin-bottom: 26px;
  color: var(--muted);
}

.service-featured-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--wine);
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
}

.service-featured-card.highlighted a {
  background: var(--yellow);
  color: var(--wine);
}

/* OTHER SERVICES */

.other-services {
  padding: 80px 0;
  background: var(--gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.services-grid article {
  min-height: 210px;
  padding: 24px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.04);
  transition: 0.25s ease;
}

.services-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.services-grid h3 {
  color: var(--wine);
  font-size: 18px;
  margin-bottom: 10px;
}

.services-grid p {
  color: var(--muted);
  font-size: 14px;
}

/* IMAGE BAND */

.image-band {
  padding: 96px 0;
  background: var(--white);
}

.image-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.image-band-photo {
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
}

.image-band-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-band-content p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

.image-band-content .btn-primary {
  margin-top: 30px;
}

/* LOCATIONS */

.locations-section {
  background: var(--gray);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.location-card {
  padding: 30px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0,0,0,0.05);
}

.location-card h3 {
  color: var(--wine);
  font-size: 22px;
  margin-bottom: 12px;
}

.location-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}

.location-card a {
  font-weight: 800;
  color: var(--wine);
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.faq-intro p {
  margin-top: 16px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 18px;
  background: var(--gray);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  color: var(--wine);
  font-size: 24px;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 15px;
}

.faq-item.active .faq-answer {
  max-height: 180px;
}

/* CONTACT */

.contact-section {
  padding: 96px 0;
  background:
    linear-gradient(rgba(166,48,50,0.94), rgba(166,48,50,0.94)),
    url("assets/nicodemos-fachada.jpg") center/cover;
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.contact-content h2 {
  color: var(--white);
}

.contact-content p {
  margin-top: 18px;
  color: rgba(255,255,255,0.86);
  font-size: 18px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn-contact {
  background: var(--yellow);
  color: var(--wine);
  box-shadow: none;
}

.btn-contact:hover {
  background: var(--white);
  color: var(--wine);
}

.btn-instagram {
  background: transparent;
  border-color: rgba(255,255,255,0.36);
  color: var(--white);
}

.btn-instagram:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.contact-card {
  padding: 34px;
  border-radius: 28px;
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-family: "ArialBlackCustom", Arial, sans-serif;
  color: var(--wine);
  font-size: 34px;
}

.contact-card > p {
  margin-top: 4px;
  color: var(--muted);
}

.contact-card ul {
  display: grid;
  gap: 14px;
  margin: 26px 0;
  list-style: none;
}

.contact-card li {
  color: var(--muted);
}

.contact-card strong {
  color: var(--text);
}

.contact-card a {
  color: var(--wine);
  font-weight: 800;
}

.contact-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

/* FOOTER */

.site-footer {
  padding: 26px 0;
  background: #111111;
  color: rgba(255,255,255,0.76);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}

/* WHATSAPP FLOAT */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.35);
  transition: 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

/* RESPONSIVO */

@media (max-width: 1024px) {
  .main-nav,
  .btn-header {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav.active {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 12px;
    padding: 22px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .hero-grid,
  .lawyer-grid,
  .problem-grid,
  .image-band-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .lawyer-grid,
  .problem-grid,
  .image-band-grid,
  .faq-grid,
  .contact-grid {
    gap: 42px;
  }

  .hero-benefits,
  .trust-grid,
  .services-grid,
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-services {
    grid-template-columns: 1fr;
  }

  .floating-card {
    left: 20px;
    bottom: 20px;
  }
}

@media (max-width: 768px) {
  .hero,
  .lawyer-section,
  .services-section,
  .locations-section,
  .faq-section,
  .image-band,
  .contact-section {
    padding: 68px 0;
  }

  .header-content {
    min-height: 72px;
  }

  .main-nav.active {
    top: 72px;
  }

  .logo {
    font-size: 21px;
  }

  .logo span {
    width: 40px;
    height: 40px;
  }

  .hero p,
  .lawyer-content p,
  .problem-content p,
  .section-heading p,
  .image-band-content p,
  .contact-content p {
    font-size: 16px;
  }

  .hero-benefits,
  .trust-grid,
  .services-grid,
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary,
  .btn-contact,
  .btn-instagram {
    width: 100%;
  }

  .problem-card,
  .service-featured-card,
  .contact-card {
    padding: 26px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float {
    right: 16px;
    left: 16px;
    bottom: 16px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero h1 {
    font-size: 38px;
  }

  .lawyer-content h2,
  .section-heading h2,
  .problem-content h2,
  .image-band-content h2,
  .faq-intro h2,
  .contact-content h2 {
    font-size: 32px;
  }

  .service-featured-card h3 {
    font-size: 28px;
  }

  .floating-card {
    position: static;
    margin-top: 16px;
    max-width: 100%;
  }
}