@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --lime: #b7ff00;
  --orange: #ff3b0a;
  --dark: #003b47;
  --dark2: #001e27;
  --text: #071b22;
  --white: #fff;
  --radius: 22px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Outfit', Arial, sans-serif;
  background: #fff;
  color: var(--text);
  overflow-x: hidden
}

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

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

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1)
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0)
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px) }
  to { opacity: 1; transform: translateY(0) }
}

.home-hero .container,
.services-hero .copy,
.about-hero h1,
.p1-hero-content,
.p2-hero-content {
  animation: heroIn .9s ease-out both
}

.btn {
  transition: transform .2s ease, box-shadow .2s ease
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.18)
}

.btn:active {
  transform: translateY(0)
}

/* ===== NAV ===== */
.nav-wrap {
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  pointer-events: none
}

.nav {
  height: 52px;
  min-width: 520px;
  background: var(--lime);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 62px;
  padding: 0 38px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .13);
  pointer-events: auto
}

.nav a {
  font-size: 16px;
  font-weight: 400;
  color: #071b22;
  line-height: 1
}

.nav a.active {
  text-decoration: underline;
  text-underline-offset: 7px;
  text-decoration-thickness: 2px
}

/* ===== GENERAL ===== */
.container {
  width: min(1180px, calc(100% - 64px));
  margin: auto
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dark2);
  color: var(--lime);
  font-weight: 900;
  letter-spacing: .3px;
  border-radius: 7px;
  padding: 13px 25px;
  text-transform: uppercase;
  font-size: 16px;
  border: 0;
  box-shadow: 0 5px 0 rgba(0, 0, 0, .12)
}

.btn.orange {
  background: var(--orange);
  color: #fff
}

.section-title {
  font-size: 50px;
  line-height: .98;
  font-weight: 900;
  text-align: center;
  color: #fff
}

.orange-title {
  color: var(--orange);
  font-size: 48px;
  line-height: .95;
  font-weight: 900;
  text-align: center
}

/* ===== HOME ===== */
.home-hero {
  position: relative;
  min-height: 612px;
  color: #fff;
  background: linear-gradient(90deg, rgba(0, 30, 39, .68), rgba(0, 30, 39, .2)), url('fotos/7.png') center/cover no-repeat;
  display: flex;
  align-items: center
}

.home-hero .container {
  padding-top: 65px
}

.home-hero h1 {
  font-size: 64px;
  line-height: .98;
  font-weight: 900;
  max-width: 650px;
  letter-spacing: -1px
}

.home-hero p {
  font-size: 23px;
  font-weight: 400;
  margin-top: 12px;
  max-width: 550px
}

.orange-band {
  background: var(--orange);
  color: #fff;
  padding: 52px 0 60px
}

.orange-band h2 {
  font-size: 34px;
  line-height: 1.05;
  font-weight: 900;
  max-width: 720px;
  margin-bottom: 12px
}

.orange-band p {
  font-size: 17px;
  line-height: 1.45;
  max-width: 670px;
  margin-bottom: 24px
}

.plans {
  padding: 62px 0 50px;
  background: #fff
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  justify-items: center;
  gap: 20px;
}

.plan-card {
  background: var(--lime);
  border: none;
  border-radius: 28px;
  padding: 14px 14px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .12);
  max-width: 300px;
  min-width: 300px;
}

.plan-card.dark {
  background: var(--dark)
}

.plan-header {
  background: var(--dark);
  border-radius: 18px;
  padding: 22px 20px 26px;
  text-align: center;
  margin-bottom: 22px;
  color: #fff
}

.plan-card.dark .plan-header {
  background: #012630
}

.plan-card h3 {
  font-size: 14px;
  text-align: center;
  font-weight: 400;
  color: #fff;
  margin-bottom: 4px
}

.price {
  font-size: 58px;
  line-height: 1;
  font-weight: 900;
  text-align: center;
  color: #fff;
  margin: 10px 0 2px
}

.monthly {
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  margin-bottom: 0
}

.features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  padding: 0 6px;
  color: var(--dark);
  flex: 1
}

.plan-card.dark .features {
  color: #fff
}

.features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.3
}

.features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  color: var(--dark);
  margin-top: 1px
}

.plan-card.dark .features li::before {
  border-color: var(--lime);
  color: var(--lime)
}

.providers {
  margin-top: 20px;
  padding: 16px 6px 0;
  border-top: 1px solid rgba(0, 0, 0, .18);
  text-align: center;
  
}

.plan-card.dark .providers {
  border-top-color: rgba(255, 255, 255, .2)
}

.providers-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 4px;
}

.plan-card.dark .providers-label {
  color: rgba(255, 255, 255, .75)
}

.providers-list {
  display: block;
  font-size: 12px;
  color: var(--dark);
  font-weight: 500;
  text-align: center;
}

.plan-card.dark .providers-list {
  text-align: center;
  color: rgba(255, 255, 255, .75)
}

.note {
  text-align: center;
  font-size: 12px;
  font-style: italic;
  margin-top: 30px;
  color: #26343a
}

.why {
  padding: 58px 0 66px
}

.why .orange-title {
  margin-bottom: 35px
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 900px;
  margin: auto
}

.benefit {
  height: 195px;
  background: linear-gradient(180deg, var(--lime) 0%, var(--dark) 100%);
  border-radius: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  font-size: 31px;
  line-height: 1.05;
  padding: 22px
}

.benefit.small {
  height: 125px;
  font-size: 19px
}

.center {
  text-align: center;
  margin-top: 45px
}

.options {
  background: var(--dark);
  color: #fff;
  padding: 70px 0 78px;
  text-align: center
}

.options h2 {
  font-size: 38px;
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 46px
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 52px;
  margin: auto
}

.option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.option img {
  height: 200px;
  filter: none;
  min-width: 200px;
}

.option p {
  font-size: 14px;
}

.options-note {
  font-style: italic;
  font-size: 13px;
  margin-top: 36px;
  color: rgba(255, 255, 255, .6)
}

.install {
  overflow: hidden
}

.install-hero {
  background: url('fotos/5.png') center / cover no-repeat;
  padding: 70px 0 80px;
  min-height: 280px;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 400px;
  text-align: center;
}

.install-cards {
  background: #fff;
  padding: 44px 0 50px;
  border: 1px solid #000;
}

.install h2 {
  font-size: 44px;
  line-height: .95;
  color: var(--orange);
  font-weight: 900;
  max-width: 48%
}

.install-note {
  text-align: center;
  font-size: 15px;
  margin-top: 28px;
  color: var(--dark)
}

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

.step {
  background: #fff;
  border-radius: 15px;
  padding: 18px 18px 18px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
  margin-top: -50%;
}

.step img {
  height: 64px;
  margin: 0 auto 14px;
  width: 200px;
  height: 200px;
}

.step h3 {
  font-size: 25px;
  line-height: 1.05;
  color: var(--orange)
}

.split-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--orange);
  color: #fff
}

.split-left {
  background: var(--dark);
  min-height: 340px;
  position: relative;
  border-top-right-radius: 44px;
  border-bottom-right-radius: 44px;
  padding: 40px 55px 40px 310px;
  overflow: hidden;
  display: flex;
  align-items: start
}

.split-left::before {
  content: '';
  position: absolute;
  left: 20px;
  bottom: 0;
  width: 650px;
  height: 250px;
  background: rgba(243, 231, 231, 0.87);
  border-radius: 55px;
  margin-left: -10%;
}

.split-left p {
  font-size: 20px;
  line-height: 1.35;
  text-align: right;
  color: #fff;
  max-width: 600px;
  margin: 50px 25px 0 auto;
}
.split-left img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 700px;
  z-index: 1;
  margin-left: -15%;
}

.split-right {
  padding: 74px 55px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.split-right img {
  height: 200px;
  margin-bottom: 18px;
  width: 200px;
  padding: 0;
}

.split-right h3 {
  font-size: 24px;
  line-height: 1.05;
  font-weight: 900
}

.split-right p {
  font-size: 16px;
  max-width: 430px;
  margin: 14px auto
}

.blog-cards {
  padding: 62px 0 10px
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: auto
}

.blog-card {
  height: 225px;
  border-radius: 20px;
  color: #fff;
  padding: 26px 24px;
  display: flex;
  align-items: flex-start;
  background: center/cover no-repeat;
  position: relative;
  overflow: hidden
}

.blog-card:after {
  content: '»';
  position: absolute;
  right: 24px;
  bottom: 18px;
  font-size: 36px;
  font-weight: 300
}

.blog-card h3 {
  font-size: 32px;
  line-height: .95;
  font-weight: 900;
  text-transform: uppercase
}

.final-cta {
  padding: 36px 0 75px
}

.cta-box {
  background: var(--dark2);
  color: #fff;
  border-radius: 38px;
  max-width: 860px;
  margin: auto;
  text-align: center;
  padding: 48px 40px 55px
}

.cta-box h2 {
  color: var(--lime);
  font-size: 40px;
  line-height: .95;
  font-weight: 900;
  margin-bottom: 20px
}

.cta-box p {
  font-size: 15px;
  max-width: 590px;
  margin: 0 auto 22px
}

.cta-box small {
  display: block;
  margin-top: 20px;
  font-size: 10px;
  color: #cbd7dc
}

.cta-box .btn {
  background: var(--lime);
  color: #000;
  font-size: 22px;
  padding: 20px 60px;
  border-radius: 12px;
  margin: 28px 0 0;
  letter-spacing: 1.5px
}

/* ===== ABOUT ===== */
.about-hero {
  min-height: 760px;
  background: linear-gradient(rgba(0, 30, 39, .38), rgba(0, 30, 39, .40)), url('fotos/4.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-bottom: 112px
}

.about-hero h1 {
  font-size: 104px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -2px
}

.about-copy {
  display: grid;
  grid-template-columns: 1fr 1fr
}

.about-copy .col {
  padding: 118px 66px 112px;
  color: #fff
}

.about-copy .left {
  background: var(--orange)
}

.about-copy .right {
  background: var(--dark)
}

.about-copy p {
  font-size: 31px;
  line-height: 1.22;
  font-weight: 400;
  margin-bottom: 50px
}

.about-copy p:last-child {
  margin-bottom: 0
}

/* ===== SERVICES ===== */
.services-hero {
  min-height: 470px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #fff
}

.services-hero .copy {
  background: var(--orange);
  padding: 145px 54px 70px
}

.services-hero h1 {
  font-size: 64px;
  line-height: .99;
  font-weight: 900;
  max-width: 590px
}

.services-hero p {
  font-size: 17px;
  line-height: 1.35;
  max-width: 560px;
  margin-top: 26px
}

.services-hero .photo {
  background: linear-gradient(rgba(0, 30, 39, .20), rgba(0, 30, 39, .20)), url('fotos/2.png') center/cover no-repeat
}

.intro {
  padding: 86px 0;
  background: #fff
}

.intro p {
  font-size: 23px;
  line-height: 1.33;
  max-width: 980px;
  margin: 0 auto 32px
}

.service-list {
  background: var(--dark);
  padding: 72px 0 96px;
  color: #fff
}

.service-list .section-title {
  margin-bottom: 76px
}

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

.service-card {
  border: 3px solid var(--lime);
  border-radius: 31px;
  min-height: 330px;
  text-align: center;
  padding: 45px 24px 26px
}

.service-card img {
  margin: auto;
  width: 200px;
  height: 200px;
}

.service-card h3 {
  font-size: 25px;
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 20px
}

.service-card p {
  font-size: 16px;
  line-height: 1.25
}

.service-card small {
  display: block;
  margin-top: 28px;
  font-size: 11px;
  font-weight: 700;
  font-style: italic
}

.ready {
  padding: 94px 0 105px;
  background: #fff;
  text-align: center
}

.ready .orange-title {
  margin-bottom: 42px
}

.ready p {
  font-size: 21px;
  line-height: 1.35;
  max-width: 980px;
  margin: 0 auto 35px
}

.ready .bullets {
  font-size: 22px;
  color: var(--orange);
  font-style: italic;
  font-weight: 600;
  line-height: 1.9;
  margin-bottom: 28px
}

.ready .bullets span {
  display: block;
  color: var(--orange)
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark2);
  color: #fff;
  padding: 84px 0 45px
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 40px;
  align-items: start
}

.footer h4 {
  font-size: 15px;
  letter-spacing: .5px;
  margin-bottom: 12px
}

.footer a,
.footer p {
  font-size: 16px;
  line-height: 1.55
}

.foot-links {
  display: grid;
  gap: 3px
}

.foot-text {
  text-align: right
}

.foot-line {
  height: 1px;
  background: #fff;
  opacity: .85;
  margin: 58px 0 25px
}

.privacy {
  text-align: center;
  font-size: 16px
}

/* ===== HAMBURGER & MOBILE MENU ===== */
.hamburger {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 50;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 6px
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  border-radius: 2px
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0d1b24 0%, #0d1b24 50%, #5a6b73 100%);
  z-index: 999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 55px;
  padding-bottom: 60px
}

.mobile-menu.open {
  display: flex
}

.mobile-menu a {
  color: #fff;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: .5px
}

.mobile-menu a.active {
  text-decoration: underline;
  text-underline-offset: 14px;
  text-decoration-thickness: 1px
}

.menu-close {
  margin-top: 40px;
  background: none;
  border: none;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  line-height: 1
}

body.menu-open {
  overflow: hidden
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 420px;
  background: var(--dark2);
  color: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  align-items: center;
  justify-content: space-between;
  z-index: 90;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .45)
}

.sticky-cta-text span {
  display: block;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  opacity: .9
}

.sticky-cta-text strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px
}

.sticky-cta-icon {
  width: 48px;
  height: 48px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.sticky-cta-icon svg {
  width: 24px;
  height: 24px
}

/* ===== POST PAGES ===== */
.post-hero {
  background: linear-gradient(135deg, var(--dark2), var(--dark));
  color: #fff;
  padding: 90px 20px 60px;
  text-align: center
}

.post-hero h1 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 700px;
  margin: 0 auto
}

.post-section {
  padding: 50px 20px;
  text-align: center
}

.post-section .container {
  max-width: 700px;
  margin: 0 auto
}

.post-section h2 {
  font-size: 42px;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1
}

.post-section p {
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 14px
}

.post-section p:last-child {
  margin-bottom: 0
}

.post-gradient {
  background: linear-gradient(180deg, var(--dark) 0%, #1a4a2e 100%);
  color: #fff
}

.post-gradient h2 {
  color: var(--lime)
}

.post-dark {
  background: var(--dark2);
  color: #fff
}

.post-dark h2 {
  color: var(--lime)
}

.post-blue {
  background: #0a3d5c;
  color: #fff
}

.post-blue h2 {
  color: var(--lime)
}

.post-teal {
  background: var(--dark);
  color: #fff
}

.post-teal h2 {
  color: var(--lime)
}

.post-lime-bg {
  background: var(--lime);
  color: var(--dark2)
}

.post-lime-bg h2 {
  color: var(--dark2)
}

.post-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 400px;
  margin: 24px auto 0
}

.post-comparison-box {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center
}

.post-comparison-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--lime)
}

.post-comparison-box p {
  font-size: 13px;
  line-height: 1.4
}

.post-provider-section {
  padding: 50px 20px;
  text-align: center;
  color: #fff;
  background: var(--dark)
}

.post-provider-section h2 {
  font-size: 36px;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 16px
}

.post-provider-section p {
  font-size: 15px;
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto 12px
}

.post-provider-section.alt {
  background: var(--dark2)
}

.post-highlight {
  background: var(--orange);
  color: #fff;
  padding: 50px 20px;
  text-align: center
}

.post-highlight h2 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto
}

.post-highlight p {
  font-size: 15px;
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto 12px
}

.post-question {
  background: #e8f5e9;
  color: var(--dark2);
  padding: 50px 20px;
  text-align: center
}

.post-question h2 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--dark)
}

.post-question p {
  font-size: 15px;
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto 12px
}

.post-conclusion {
  background: var(--dark2);
  color: #fff;
  padding: 50px 20px;
  text-align: center
}

.post-conclusion h2 {
  font-size: 32px;
  font-weight: 900;
  color: var(--lime);
  margin-bottom: 16px
}

.post-conclusion p {
  font-size: 15px;
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto 12px
}

/* ===== POST 1 (Cobre vs Fibra) ===== */
.p1-hero {
  background: var(--dark2);
  color: #fff;
  min-height: 360px;
  padding: 100px 24px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative
}

.p1-hero-content {
  max-width: 700px;
  margin: 0 auto
}

.p1-hero h1 {
  font-size: 44px;
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px
}

.p1-hero p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin: 0 auto
}

.p1-intro {
  background: #fff;
  padding: 44px 24px;
  color: var(--text);
  text-align: center
}

.p1-intro p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.55
}

.p1-feature {
  min-height: 380px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 28px;
  background-size: cover;
  background-position: center;
  position: relative
}

.p1-feature-content {
  position: relative;
  z-index: 2;
  max-width: 420px
}

.p1-feature h2 {
  font-size: 56px;
  line-height: 1;
  font-style: italic;
  font-weight: 900;
  margin-bottom: 16px;
  text-shadow: 0 4px 12px rgba(0,0,0,.45)
}

.p1-feature p {
  font-size: 17px;
  line-height: 1.35;
  font-weight: 500
}

.p1-fiber {
  background-image: linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.42)), url('fotos/9.jpg')
}

.p1-stability {
  background-image: linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.42)), url('fotos/8.jpg');
  background-size: cover;
  background-position: center
}

.p1-green-section {
  background: linear-gradient(180deg, #b7ff00 0%, #00414a 100%);
  min-height: 360px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 28px
}

.p1-green-section h2 {
  font-size: 56px;
  line-height: 1;
  font-style: italic;
  font-weight: 900;
  margin-bottom: 16px;
  text-shadow: 0 4px 8px rgba(0,0,0,.25)
}

.p1-green-section p {
  max-width: 420px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.4
}

.p1-data-section {
  background: #fff;
  padding: 60px 24px 55px;
  text-align: center
}

.p1-data-section h2 {
  color: var(--orange);
  font-size: 34px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px
}

.p1-desc {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text)
}

.p1-cards {
  display: flex;
  flex-direction: row;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto
}

.p1-card {
  flex: 1;
  border: 2px solid var(--orange);
  border-radius: 22px;
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.p1-card h3 {
  color: var(--orange);
  font-size: 28px;
  font-style: italic;
  font-weight: 900;
  margin-bottom: 14px
}

.p1-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 600
}

.p1-article-wrapper {
  padding: 20px 20px 40px;
  background: #fff
}

.p1-article {
  padding: 55px 44px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px
}

.p1-article.green {
  background: var(--lime);
  color: var(--text)
}

.p1-article.blue {
  background: #003744;
  color: #fff
}

.p1-article h2 {
  font-size: 38px;
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 24px
}

.p1-article p {
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 16px
}

.p1-article p:last-child {
  margin-bottom: 0
}

.p1-conclusion {
  padding: 60px 28px 80px;
  background: #fff;
  text-align: center
}

.p1-conclusion h2 {
  font-size: 38px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 20px
}

.p1-conclusion p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text)
}

/* ===== POST 2 (Proveedores de Internet) ===== */
.p2-hero {
  min-height: 420px;
  padding: 100px 24px 60px;
  background-image: linear-gradient(rgba(3,34,43,.58), rgba(3,34,43,.72)), url('fotos/10.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative
}

.p2-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px
}

.p2-hero h1 {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px
}

.p2-hero p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,.88)
}

.p2-intro {
  padding: 44px 24px;
  background: #fff;
  text-align: center
}

.p2-intro p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text)
}

.p2-provider {
  min-height: 260px;
  padding: 50px 28px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center
}

.p2-provider.white {
  background: #fff;
  color: var(--text)
}

.p2-provider.green {
  background: linear-gradient(180deg, #b7ff00 0%, #003744 100%);
  color: #fff
}

.p2-provider h2 {
  font-size: 52px;
  line-height: 1;
  font-style: italic;
  font-weight: 900;
  margin-bottom: 16px
}

.p2-provider.white h2 {
  color: var(--text)
}

.p2-provider.green h2 {
  text-shadow: 0 4px 8px rgba(0,0,0,.25)
}

.p2-provider p {
  max-width: 480px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.45
}

.p2-comparison {
  background: #fff;
  padding: 60px 24px 55px;
  text-align: center
}

.p2-comparison h2 {
  color: var(--orange);
  font-size: 34px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px
}

.p2-desc {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text)
}

.p2-cards {
  max-width: 950px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.p2-card {
  padding: 30px 22px;
  border: 2px solid var(--orange);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.p2-card h3 {
  color: var(--orange);
  font-size: 22px;
  font-style: italic;
  font-weight: 900;
  margin-bottom: 14px
}

.p2-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 600
}

.p2-article-wrapper {
  padding: 20px 20px 40px;
  background: #fff;
  max-width: 980px;
  margin: 0 auto
}

.p2-article {
  margin-bottom: 16px;
  padding: 55px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px
}

.p2-article.blue {
  background: #003744;
  color: #fff
}

.p2-article.green {
  background: var(--lime);
  color: var(--text)
}

.p2-article h2 {
  font-size: 38px;
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 22px
}

.p2-article p {
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 16px
}

.p2-article p:last-child {
  margin-bottom: 0
}

.p2-conclusion {
  background: #fff;
  padding: 60px 28px 80px;
  text-align: center
}

.p2-conclusion h2 {
  font-size: 38px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 20px
}

.p2-conclusion p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text)
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {

  /* Hamburger visible, desktop nav hidden */
  .hamburger {
    display: flex
  }

  .nav-wrap {
    display: none
  }

  /* Sticky CTA visible */
  .sticky-cta {
    display: flex
  }

  /* General */
  .container {
    width: calc(100% - 40px)
  }

  .btn {
    font-size: 13px;
    padding: 11px 20px;
    border-radius: 6px
  }

  .section-title {
    font-size: 28px
  }

  .orange-title {
    font-size: 28px
  }

  /* ---- HOME ---- */
  .home-hero {
    min-height: 200px;
    align-items: flex-end;
    padding-bottom: 24px;
    background-position: center
  }

  .home-hero .container {
    padding-top: 30px
  }

  .home-hero h1 {
    font-size: 28px;
    max-width: 260px
  }

  .home-hero p {
    font-size: 11px;
    max-width: 260px;
    margin-top: 6px
  }

  .orange-band {
    padding: 28px 0 26px
  }

  .orange-band h2 {
    font-size: 20px
  }

  .orange-band p {
    font-size: 11px;
    max-width: 100%
  }

  /* Plans: 2 cols, 3rd centered */
  .plans {
    padding: 35px 0 28px
  }

  .plan-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px
  }

  .plan-card {
    min-width: unset;
    max-width: unset;
    border-radius: 16px;
    padding: 10px 10px 18px
  }

  .plan-card:last-child {
    grid-column: 1 / -1;
    max-width: 52%;
    justify-self: center
  }

  .plan-header {
    border-radius: 12px;
    padding: 14px 10px 16px;
    margin-bottom: 14px
  }

  .plan-card h3 {
    font-size: 9px
  }

  .price {
    font-size: 30px
  }

  .monthly {
    font-size: 10px
  }

  .features {
    font-size: 9px;
    gap: 7px
  }

  .features li::before {
    width: 14px;
    height: 14px;
    font-size: 7px
  }

  .providers {
    padding-top: 10px;
    margin-top: 12px
  }

  .providers-label {
    font-size: 7px
  }

  .providers-list {
    font-size: 7px
  }

  .note {
    font-size: 9px;
    margin-top: 16px
  }

  /* Why / Benefits */
  .why {
    padding: 42px 0 38px
  }

  .benefits {
    gap: 4px
  }

  .benefit {
    height: 110px;
    border-radius: 10px;
    font-size: 16px;
    padding: 12px
  }

  .benefit.small {
    height: 75px;
    font-size: 11px
  }

  .center {
    margin-top: 28px
  }

  /* Options: 2x2 */
  .options {
    padding: 44px 0 48px
  }

  .options h2 {
    font-size: 24px;
    margin-bottom: 30px
  }

  .option-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px
  }

  .option img {
    height: 80px;
    min-width: 80px
  }

  .option p {
    font-size: 11px;
    margin-top: 6px
  }

  .options-note {
    font-size: 10px;
    margin-top: 22px
  }

  /* Install: image + overlapping cards */
  .install {
    position: relative
  }

  .install-hero {
    padding: 50px 0 160px;
    min-height: auto;
    background-size: cover;
    background-position: center top;
    min-height: 350px;
  }

  .install h2 {
    font-size: 28px;
    max-width: 70%;
    margin: 0 auto;
    text-align: center;
    margin-top: -25%
  }

  .install-cards {
    padding: 140px 0 32px;
    position: relative;
    max-height: 150px;
  }

  .install-note {
    font-size: 13px
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: -380px;
    position: relative;
    z-index: 2;
    max-width: 68%;
    max-height: 50%;
    margin-left: 0;
    margin-right: auto
  }

  .step {
    border-radius: 16px;
    padding: 24px 14px 20px;
    margin-top: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1)
  }

  .step img {
    width: 70px;
    height: 70px;
    margin: 0 auto 10px
  }

  .step h3 {
    font-size: 13px
  }

  /* Split promo: stacked */
  .split-promo {
    grid-template-columns: 1fr
  }

  .split-left {
    min-height: 220px;
    border-radius: 0;
    padding: 30px 20px 30px 20px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
  }

  .split-left::before {
    width: 100%;
    height: 180px;
    left: -10%;
    border-radius: 40px
  }

  .split-left p {
    font-size: 16px;
    text-align: center;
    margin: 20px auto 0;
    position: relative;
    z-index: 2;
    max-width: 300px;
  }


.split-left img {
  position: absolute;
  width:450px;
  left: 22px;
  bottom: 0;
  z-index: 2;
}

  .split-right {
    padding: 36px 20px
  }

  .split-right img {
    height: 150px;
    width: 150px
  }

  .split-right h3 {
    font-size: 16px
  }

  .split-right p {
    font-size: 12px
  }

  /* Blog grid: 1 col */
  .blog-cards {
    padding: 36px 0 10px
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .blog-card {
    height: 160px;
    border-radius: 14px;
    padding: 22px 18px
  }

  .blog-card h3 {
    font-size: 22px
  }

  .blog-card:after {
    font-size: 28px;
    right: 18px;
    bottom: 14px
  }

  /* Final CTA */
  .final-cta {
    padding: 24px 0 100px
  }

  .cta-box {
    border-radius: 24px;
    padding: 32px 22px 38px
  }

  .cta-box h2 {
    font-size: 24px
  }

  .cta-box p {
    font-size: 12px
  }

  .cta-box strong {
    font-size: 13px
  }

  .cta-box small {
    font-size: 8px
  }

  .cta-box .btn {
    font-size: 16px;
    padding: 16px 36px
  }

  /* ---- ABOUT ---- */
  .about-hero {
    min-height: 400px;
    padding-bottom: 50px
  }

  .about-hero h1 {
    font-size: 48px
  }

  .about-copy {
    grid-template-columns: 1fr
  }

  .about-copy .col {
    padding: 50px 24px 55px
  }

  .about-copy p {
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 30px
  }

  /* ---- SERVICES ---- */
  .services-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    display: flex;
    flex-direction: column
  }

  .services-hero .nav-wrap {
    order: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none
  }

  .services-hero .photo {
    order: 1;
    min-height: 260px
  }

  .services-hero .copy {
    order: 2;
    padding: 36px 24px 40px
  }

  .services-hero h1 {
    font-size: 34px
  }

  .services-hero p {
    font-size: 13px;
    margin-top: 16px
  }

  .intro {
    padding: 44px 0
  }

  .intro p {
    font-size: 15px
  }

  .service-list {
    padding: 50px 0 60px
  }

  .service-list .section-title {
    margin-bottom: 40px
  }

  .cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px
  }

  .service-card {
    border-width: 2px;
    border-radius: 20px;
    min-height: auto;
    padding: 28px 14px 22px
  }

  .service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 14px
  }

  .service-card h3 {
    font-size: 14px;
    margin-bottom: 10px
  }

  .service-card p {
    font-size: 11px
  }

  .service-card small {
    font-size: 8px;
    margin-top: 14px
  }

  .ready {
    padding: 50px 0 60px
  }

  .ready .orange-title {
    margin-bottom: 28px
  }

  .ready p {
    font-size: 14px
  }

  .ready .bullets {
    font-size: 14px
  }

  /* ---- FOOTER ---- */
  .footer {
    padding: 44px 0 100px
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .foot-text {
    text-align: left
  }

  .footer h4 {
    font-size: 11px
  }

  .footer a,
  .footer p {
    font-size: 12px
  }

  .privacy {
    font-size: 12px
  }

  .foot-line {
    margin: 30px 0 16px
  }

  /* ---- POST 2 MOBILE ---- */
  .p2-hero {
    padding: 70px 20px 44px;
    min-height: auto
  }

  .p2-hero h1 {
    font-size: 22px
  }

  .p2-hero p {
    font-size: 12px
  }

  .p2-intro p {
    font-size: 13px
  }

  .p2-provider {
    min-height: 200px
  }

  .p2-provider h2 {
    font-size: 34px
  }

  .p2-provider p {
    font-size: 14px
  }

  .p2-comparison h2 {
    font-size: 20px
  }

  .p2-cards {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .p2-article {
    padding: 36px 24px
  }

  .p2-article h2 {
    font-size: 24px
  }

  .p2-article p {
    font-size: 14px
  }

  .p2-conclusion h2 {
    font-size: 26px
  }

  /* ---- POST 1 MOBILE ---- */
  .p1-hero {
    padding: 70px 20px 44px;
    min-height: auto
  }

  .p1-hero h1 {
    font-size: 24px
  }

  .p1-hero p {
    font-size: 12px
  }

  .p1-intro p {
    font-size: 13px
  }

  .p1-feature {
    min-height: 280px
  }

  .p1-feature h2 {
    font-size: 36px
  }

  .p1-feature p {
    font-size: 14px
  }

  .p1-green-section {
    min-height: 280px
  }

  .p1-green-section h2 {
    font-size: 36px
  }

  .p1-green-section p {
    font-size: 14px
  }

  .p1-data-section h2 {
    font-size: 22px
  }

  .p1-cards {
    flex-direction: column
  }

  .p1-article {
    padding: 36px 24px
  }

  .p1-article h2 {
    font-size: 24px
  }

  .p1-article p {
    font-size: 14px
  }

  .p1-conclusion h2 {
    font-size: 26px
  }

  /* ---- POST PAGES ---- */
  .post-hero {
    padding: 70px 16px 44px
  }

  .post-hero h1 {
    font-size: 28px
  }

  .post-section h2 {
    font-size: 30px
  }

  .post-section p {
    font-size: 14px
  }

  .post-provider-section h2 {
    font-size: 28px
  }

  .post-highlight h2 {
    font-size: 22px
  }

  .post-question h2 {
    font-size: 22px
  }

  .post-conclusion h2 {
    font-size: 26px
  }

  .cards {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
  }
  .service-card {
    width: 48%;
  }
}

@media(max-width:420px) {

  .container {
    width: calc(100% - 32px)
  }

  .home-hero h1 {
    font-size: 24px
  }

  .plan-card:last-child {
    max-width: 60%
  }

  .benefit {
    height: 95px;
    font-size: 14px
  }

  .benefit.small {
    height: 65px;
    font-size: 10px
  }

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

  .about-copy p {
    font-size: 16px
  }

  .services-hero h1 {
    font-size: 28px
  }

  .cta-box .btn {
    font-size: 14px;
    padding: 14px 28px
  }
}

