@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700;900&family=Lato:wght@300;400;700&display=swap');

:root {
  --accent: #b9d331;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  font-family: 'Lato', Arial, sans-serif;
  background: #fff;
}

/* ========== BOXED WRAPPER ========== */

.box-wrapper {
  max-width: 1880px;
  margin: 30px auto 0;
  padding: 0;
  background: #fff;
  position: relative;
  overflow: clip;
  margin-left: 30px;
  margin-right: 30px;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 130px);
}

@media (min-width: 1941px) {
  .box-wrapper {
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .box-wrapper { margin: 0 auto; }
}

/* ========== HEADER BLOCK ========== */

.header-block {
  position: relative;
}

/* ========== NAVBAR ========== */

.site-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 120px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background-color 0.4s ease;
}

.nav-logo {
  position: absolute;
  left: 65px;
}
.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.nav-menu a {
  display: block;
  padding: 8px 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-transform: lowercase;
  transition: color 0.2s;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 18px;
  right: 21px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-menu a:hover::after {
  transform: scaleX(1);
  background: rgba(255, 255, 255, 0.5);
}
.nav-menu a.active::after {
  transform: scaleX(1);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1.5rem;
  padding: 4px 10px;
  cursor: pointer;
  line-height: 1;
  position: absolute;
  right: 65px;
}

/* Mobile side menu */
.side-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 900;
}
.side-overlay.is-open { display: block; }

.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  background: #031521;
  z-index: 901;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 80px 0 40px;
  overflow-y: auto;
}
.side-menu.is-open { transform: translateX(0); }

.side-menu-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 14px 20px 0;
}

.side-menu-logo {
  height: 28px;
  width: auto;
  opacity: 0.35;
}

.side-menu-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.side-menu-close:hover { color: #fff; }

.side-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.side-menu a {
  display: block;
  padding: 14px 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-transform: lowercase;
  border: none;
  transition: color 0.2s, background 0.2s;
}
.side-menu a:hover,
.side-menu a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 767px) {
  .site-nav { height: 70px; }
  .nav-logo { left: 20px; }
  .nav-menu { display: none; }
  .nav-toggle { display: block; right: 20px; }
}

/* ========== FIXED NAV ========== */

.nav-fixed {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 1000;
  width: calc(100% - 60px);
  max-width: 1880px;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: rgba(3, 21, 33, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateX(-50%) translateY(-100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.3s ease, background-color 0.5s ease;
}
.nav-fixed.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  background: rgba(3, 21, 33, 0.92);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.nav-fixed .nav-logo { position: absolute; left: 65px; }
.nav-fixed .nav-logo img { height: 28px; }
.nav-fixed .nav-menu {
  display: flex;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.nav-fixed .nav-menu a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 700;
  padding: 8px 18px;
  text-decoration: none;
  text-transform: lowercase;
}
.nav-fixed .nav-menu a:hover,
.nav-fixed .nav-menu a.active { color: #fff; }
.nav-fixed .nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1.5rem;
  padding: 2px 8px;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 767px) {
  .nav-fixed { left: 0; width: 100%; height: 60px; padding: 0 15px; transform: translateX(0) translateY(-100%); }
  .nav-fixed.is-visible { transform: translateX(0) translateY(0); }
  .nav-fixed .nav-logo { left: 20px; }
  .nav-fixed .nav-toggle { display: block; right: 20px; position: absolute; }
  .nav-fixed .nav-menu { display: none; }
}

/* ========== HERO ========== */

.hero {
  position: relative;
  width: 100%;
  height: 390px;
  overflow: hidden;
  background-color: #1a2a3a;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #031521;
  opacity: 0.45;
  z-index: 1;
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-lines .vline {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.hero-lines .vline:nth-child(1) { left: 319px; }
.hero-lines .vline:nth-child(2) { right: 922px; }
.hero-lines .vline:nth-child(3) { right: 282px; }
.hero-lines .hline { display: none; }

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 30px;
}

.hero-title {
  font-family: 'Unbounded', sans-serif;
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  margin: 0 0 25px;
  line-height: 1;
  letter-spacing: -0.01em;
}

.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-breadcrumb a {
  display: inline-block;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.hero-breadcrumb a:hover {
  background: rgba(255, 255, 255, 0.25);
}
.hero-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
}
.hero-breadcrumb .current {
  color: rgba(255, 255, 255, 0.5);
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 991px) {
  .hero-title { font-size: 48px; }
}
@media (max-width: 767px) {
  .hero { height: 280px; }
  .hero-title { font-size: 32px; }
}

/* ========== SECTION LABEL ========== */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin: 0;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.ip-text {
  color: #bbb;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* ========== WELCOME ========== */

.welcome-section {
  padding: 35px 40px 10px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* ========== CARDS ========== */

.cards-section {
  padding: 40px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.cards-row {
  display: flex;
  gap: 0;
}

.card-box {
  flex: 1;
  text-align: center;
  padding: 50px 35px 45px;
  background: #f2f2eb;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.3s;
}
.card-box:hover { background: #e8eadf; }

.card-box--a { background: #9daf39; }
.card-box--a:hover { background: #8fa032; }
.card-box--a .card-title,
.card-box--a .card-text,
.card-box--a .card-icon { color: #fff; }

.card-box--b { background: #b3c25d; }
.card-box--b:hover { background: #a3b24f; }
.card-box--b .card-title,
.card-box--b .card-text,
.card-box--b .card-icon { color: #fff; }

.card-icon {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1;
}

.card-title {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin: 0 0 16px;
}

.card-text {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

@media (max-width: 767px) {
  .cards-row { flex-direction: column; }
  .cards-section { padding: 30px 15px; }
  .card-box { padding: 35px 25px 30px; }
}

/* ========== ABOUT ========== */

.about-section {
  padding: 40px 40px 40px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-inner {
  max-width: 750px;
  margin: 0 auto;
}

.about-title {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #222;
  margin: 20px 0 20px;
  line-height: 1.3;
}

.about-text {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin: 0 0 40px;
}

.about-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}
.about-logos a { opacity: 0.7; transition: opacity 0.2s; }
.about-logos a:hover { opacity: 1; }
.about-logos img { height: auto; max-height: 50px; }

@media (max-width: 767px) {
  .about-section { padding: 40px 20px; }
  .about-title { font-size: 24px; }
}

/* ========== CONTENT ========== */

.site-content {
  padding: 60px 0;
  color: #555;
  line-height: 1.8;
}
.site-content h2 {
  font-size: 1.2rem;
  color: #333;
  margin: 2rem 0 1rem;
}
.site-content:has(> .subpage-layout),
.site-content:has(> .oferta-layout) {
  padding: 0;
}

/* ========== SUBPAGE LAYOUT (sidebar + content) ========== */

.subpage-layout.container,
.oferta-layout.container {
  max-width: 1100px;
}

.subpage-layout {
  padding-top: 50px;
  padding-bottom: 60px;
  color: #555;
  line-height: 1.8;
}

.subpage-sidebar {
  width: 170px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.subpage-layout > .row { gap: 50px; }

.sidebar-heading {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #999;
  margin: 0 0 14px;
  padding-left: 14px;
}

.subpage-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.subpage-sidebar li + li {
  margin-top: 2px;
}

.subpage-sidebar a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.subpage-sidebar a:hover {
  color: #333;
  background: #f7f7f5;
  border-left-color: #ccc;
}

.subpage-sidebar a.active {
  color: #333;
  border-left-color: var(--accent);
  background: #f7f7f5;
}

.subpage-main {
  min-width: 0;
}

.subpage-main h2 {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #222;
  margin: 0 0 22px;
}

.subpage-main h3 {
  font-size: 21px;
  font-weight: 700;
  color: #333;
  margin: 38px 0 14px;
}

.subpage-main p {
  font-size: 16.5px;
  color: #555;
  margin: 0 0 18px;
  line-height: 1.85;
}

.subpage-main ul {
  margin: 0 0 22px;
  padding-left: 22px;
}

.subpage-main li {
  font-size: 15.5px;
  color: #555;
  margin-bottom: 7px;
  line-height: 1.75;
}

.subpage-main a {
  color: #4a7a1b;
  text-decoration: none;
  transition: color 0.2s;
}
.subpage-main a:hover {
  color: #3a6215;
  text-decoration: underline;
}

.subpage-main strong {
  color: #333;
}

@media (max-width: 767px) {
  .subpage-layout { padding-top: 30px; padding-bottom: 40px; }
  .subpage-layout > .row { gap: 30px; }
  .subpage-sidebar {
    position: static;
    width: 100%;
    border-top: 1px solid #eee;
    padding-top: 20px;
  }
  .subpage-sidebar ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .subpage-sidebar li + li { margin-top: 0; }
  .subpage-sidebar a {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 12px 16px;
    font-size: 14px;
    background: #f5f5f0;
    border-radius: 4px;
    text-align: center;
    width: 100%;
  }
  .subpage-sidebar a:hover {
    border-left: none;
    border-bottom-color: #ccc;
    background: #eee;
  }
  .subpage-sidebar a.active {
    border-left: none;
    border-bottom-color: var(--accent);
    background: #eee;
  }
  .sidebar-heading { padding-left: 0; margin-bottom: 10px; }
  .subpage-main h2 { font-size: 20px; }
  .subpage-main h3 { font-size: 17px; }
}

/* ========== PORTFOLIO GRID ========== */

.portfolio-featured {
  background: #e2e2dc;
  padding: 24px;
  margin-bottom: 50px;
  border-radius: 4px;
  overflow: hidden;
}
.portfolio-featured img { max-width: 120px; height: auto; display: block; margin: 0 auto; }
.portfolio-featured a { transition: opacity 0.2s; display: block; }
.portfolio-featured a:hover { opacity: 0.7; }

.portfolio-grid {
  margin-bottom: 10px;
}

.portfolio-grid > .col {
  display: flex !important;
}

.portfolio-item {
  background: #e2e2dc;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.portfolio-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.portfolio-item img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 16px;
}

.portfolio-item ul {
  list-style: none;
  margin: 0;
  padding: 14px 16px;
  background: #f9f9f6;
  flex-grow: 1;
}

.portfolio-item li {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}
.portfolio-item li strong {
  color: #444;
}

.subpage-main .portfolio-cta {
  margin-top: 40px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.portfolio-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .portfolio-item img { padding: 12px; }
}

/* ========== PROCESS TIMELINE ========== */

.process-section {
  padding: 30px 40px 70px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.process-title {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin: 20px 0 50px;
}

.process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-line {
  position: absolute;
  top: 67px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: #ccc;
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 0 10px;
}

.process-icon {
  font-size: 40px;
  background: linear-gradient(180deg, #9c9ea2, #85878b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1;
}

.process-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: #fff;
  margin-bottom: 16px;
}
.process-step:hover .process-dot { background: var(--accent); }

.process-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 8px;
}

.process-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #888;
  margin: 0;
  text-align: center;
}

@media (max-width: 767px) {
  .process-section { padding: 40px 20px 50px; }
  .process-title { font-size: 22px; }
  .process-timeline { flex-wrap: wrap; gap: 30px; }
  .process-step { flex: 0 0 45%; }
  .process-line { display: none; }
  .process-name { font-size: 16px; }
}

/* ========== SUBPAGE FORMS ========== */

.subpage-main .form-control,
.subpage-main .form-select {
  border-radius: 6px;
  padding: .7rem 1rem;
  border: 1px solid #ccc;
  transition: border-color .2s, box-shadow .2s;
}
.subpage-main .form-control:focus,
.subpage-main .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(185, 211, 49, .2);
}
.subpage-main .form-control-lg {
  padding: .85rem 1.1rem;
  font-size: 1rem;
}
.subpage-main .btn-success {
  border-radius: 6px;
  padding: .7rem 2.5rem;
  font-weight: 700;
  letter-spacing: .5px;
  background: #198754;
  border-color: #157347;
  transition: background .2s, transform .1s;
}
.subpage-main .btn-success:hover {
  background: #157347;
  transform: translateY(-1px);
}
.subpage-main .btn-success:disabled {
  opacity: .5;
  transform: none;
}

/* ========== FOOTER ========== */

.site-footer {
  position: relative;
  height: 350px;
  margin-top: 80px;
  background: linear-gradient(135deg, #021018 0%, #082840 50%, #021018 100%);
  overflow: hidden;
}

.site-footer #particles-js {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0 0 2.5rem;
  pointer-events: none;
}
.footer-content a { pointer-events: auto; }

.footer-content .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.footer-info {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.footer-info li {
  display: inline;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-right: 6px;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  text-align: right;
  margin: 0 0 1rem;
}

.footer-links-left,
.footer-links-right {
  font-size: 12px;
  line-height: 24px;
  margin: 0;
}
.footer-links-right { text-align: right; }

.footer-content a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
  margin: 0 6px;
}
.footer-content a:hover { color: var(--accent); }
.footer-content span { color: rgba(255, 255, 255, 0.25); }

.footer-w3c {
  height: 16px;
  width: auto;
  display: inline-block;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.footer-w3c:hover { opacity: 0.8; }

@media (max-width: 767px) {
  .footer-content { align-items: center; padding: 2rem 1rem; }
  .footer-info li { display: block; text-align: center; margin-right: 0; padding: 2px 0; }
  .footer-info li.d-none { display: none !important; }
  .footer-contact { text-align: center; margin-top: 0.5rem; }
  .footer-links-left, .footer-links-right { text-align: center; margin-bottom: 0.5rem; }
  .footer-links-left a, .footer-links-right a { display: inline-block; margin: 3px 4px; }
  .footer-links-left span, .footer-links-right span { display: none; }
  .footer-w3c { margin-top: 0.5rem; }
}

/* ========== BOTTOM BAR ========== */

.bottom-bar {
  height: 100px;
  padding: 0;
  background-color: #172732;
  max-width: 1880px;
  margin-left: 30px;
  margin-right: 30px;
  border-top: 1px solid #34424b;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1941px) {
  .bottom-bar { margin-left: auto; margin-right: auto; }
}
@media (max-width: 767px) {
  .bottom-bar { margin-left: 0; margin-right: 0; }
}

.btn-top {
  width: 44px;
  height: 44px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: transparent;
  color: var(--accent);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, color 0.2s;
  padding: 0;
}
.btn-top:hover {
  background: var(--accent);
  color: #172732;
}

/* ========== OFERTA CARDS ========== */

.oferta-layout {
  padding-top: 50px;
  padding-bottom: 60px;
  color: #555;
  line-height: 1.8;
}
.oferta-layout h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.oferta-intro {
  font-size: 1.1rem;
  color: #777;
  max-width: 600px;
}
.oferta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f9f9f6;
  border: 1px solid #e0e0d8;
  border-radius: 10px;
  padding: 35px 25px 30px;
  height: 100%;
  text-decoration: none;
  color: #555;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.oferta-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-3px);
  color: #555;
  text-decoration: none;
}
.oferta-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.oferta-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}
.oferta-card p {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .oferta-layout { padding-top: 30px; padding-bottom: 40px; }
}

/* ========== CMS FEATURE BLOCKS ========== */

.cms-feature-block {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.cms-feature-img {
  text-align: center;
  background: #fff;
}
.cms-feature-img img {
  display: block;
  width: 100%;
}
.cms-feature-desc {
  background: #f5f5f0;
  padding: 18px 22px;
}
.cms-feature-desc ul {
  margin: 0;
}
.cms-feature-desc p {
  margin: 0;
}

/* ========== HOSTING CARDS ========== */

.hosting-card {
  background: #f9f9f6;
  border: 1px solid #e0e0d8;
  border-radius: 10px;
  padding: 30px 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.hosting-card--highlight {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent);
}
.hosting-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #333;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 16px;
  border-radius: 20px;
}
.hosting-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #333;
}
.hosting-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
}
.hosting-card ul li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}
.hosting-card ul li:last-child {
  border-bottom: none;
}
.hosting-price, p.hosting-price {
  margin-top: 20px;
  margin-bottom: 0 !important;
  font-size: 1.4rem;
  font-weight: 700;
  color: #696969 !important;
  text-align: center;
  background: #f0f0e8;
  padding: 14px 10px;
  border-radius: 8px;
}
.hosting-price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: #888;
  display: block;
  margin-top: 2px;
}

/* ========== PRINT ========== */

@media print {
  .site-nav, .nav-fixed, .site-footer, .bottom-bar, .btn-top { display: none; }
  .box-wrapper { margin: 0; min-height: auto; }
}
