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

html {
scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: #FFFfff;
}

body {
font-family: "Open Sans", sans-serif;
background: #ffffff;
color: #333;
overflow-x: hidden;
}

/* COLORES INICIALES
:root {
--primary: #0477bf;
--dark: #2f5973;
--accent: #d92378;
--light-blue: #04b2d9;
--soft: #f2eeac;
--white: #ffffff;
--gray: #5f6670;
--section: #f7fbfd;
}
*/

:root{
  --primary: #2563eb;
  --dark: #1e293b;
  --accent: #ec4899;
  --light-blue: #38bdf8;
  --soft: #f8fafc;
  --white: #ffffff;
  --gray: #64748b;
  --section: #f1f5f9;
}

.container {
width: 90%;
max-width: 1200px;
margin: auto;
}

section {
padding: 100px 0;
}

h1,
h2,
h3,
h4 {
font-family: "Montserrat", sans-serif;
}

.btn{
  cursor: pointer;
  transition: .3s ease;
}

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

/* NAVBAR */

header {
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
background: rgba(255, 255, 255, 0.92);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 0;
}

.logo {
font-size: 2rem;
font-weight: 800;
color: var(--primary);
}

.menu {
display: flex;
gap: 35px;
align-items: center;
}

.menu a {
text-decoration: none;
color: #333;
font-weight: 600;
transition: 0.3s;
}

.menu a:hover {
color: var(--accent);
}

.btn {
display: inline-block;
padding: 16px 32px;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
transition: 0.3s ease;
}

.btn-primary {
background: var(--accent);
color: white;
box-shadow: 0 10px 25px rgba(217, 35, 120, 0.25);
}

.btn-primary:hover {
transform: translateY(-4px);
}

.btn-outline {
border: 2px solid white;
color: white;
}

.btn-outline:hover {
background: white;
color: var(--dark);
}

/* HERO */

.hero {
min-height: 100vh;
display: flex;
align-items: center;
background: linear-gradient(135deg, var(--primary), var(--light-blue));
position: relative;
overflow: hidden;
padding-top: 100px;
}

.hero::before {
content: "";
position: absolute;
width: 500px;
height: 500px;
background: rgba(255, 255, 255, 0.08);
border-radius: 50%;
top: -200px;
right: -150px;
filter: blur(10px);
}

.hero::after {
content: "";
position: absolute;
width: 400px;
height: 400px;
background: rgba(217, 35, 120, 0.15);
border-radius: 50%;
bottom: -150px;
left: -120px;
filter: blur(10px);
}

.hero-content {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 60px;
align-items: center;
}

.hero-text span {
display: inline-block;
background: rgba(255, 255, 255, 0.15);
padding: 10px 20px;
border-radius: 50px;
color: white;
margin-bottom: 25px;
font-weight: 600;
}

.hero-text h1 {
font-size: 4rem;
line-height: 1.1;
color: white;
margin-bottom: 30px;
}

.hero-text p {
font-size: 1.2rem;
color: rgba(255, 255, 255, 0.9);
line-height: 1.8;
margin-bottom: 40px;
}

.hero-buttons {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.hero-image {
position: relative;
}

.mockup {
background: white;
padding: 20px;
border-radius: 30px;
box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
transform: rotate(2deg);
transition: 0.4s;
}

.mockup:hover {
transform: rotate(0deg);
}

.browser-top {
background: #1e1e1e;
padding: 15px;
border-radius: 20px 20px 0 0;
display: flex;
gap: 8px;
}

.browser-top div {
width: 12px;
height: 12px;
border-radius: 50%;
}

.browser-top div:nth-child(1) {
background: #ff5f56;
}
.browser-top div:nth-child(2) {
background: #ffbd2e;
}
.browser-top div:nth-child(3) {
background: #27c93f;
}

.mockup-body {
padding: 30px;
background: white;
border-radius: 0 0 20px 20px;
}

.mockup-header {
height: 50px;
border-radius: 15px;
background: var(--primary);
margin-bottom: 20px;
}

.mockup-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 15px;
margin-bottom: 20px;
}

.mockup-grid div {
height: 120px;
border-radius: 20px;
}

.mockup-grid div:nth-child(1) {
background: var(--light-blue);
}
.mockup-grid div:nth-child(2) {
background: var(--soft);
}
.mockup-grid div:nth-child(3) {
background: var(--accent);
}

.line {
height: 12px;
background: #e5e5e5;
border-radius: 50px;
margin-bottom: 12px;
}

.line.small {
width: 70%;
}

.floating-card {
position: absolute;
background: white;
padding: 16px 20px;
border-radius: 18px;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
font-weight: 700;
color: var(--primary);
}

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

.card-2 {
top: -20px;
right: -10px;
color: var(--accent);
}

/* SECTION TITLE */

.section-title {
text-align: center;
margin-bottom: 70px;
}

.section-title h2 {
font-size: 3rem;
color: var(--dark);
margin-bottom: 20px;
}

.section-title p {
max-width: 700px;
margin: auto;
color: var(--gray);
line-height: 1.8;
font-size: 1.1rem;
}

/* COMPARISON */

.comparison {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px;
}

.comparison-card {
padding: 50px;
border-radius: 30px;
}

.comparison-card h3 {
margin-bottom: 25px;
font-size: 2rem;
}

.comparison-card ul {
list-style: none;
}

.comparison-card li {
margin-bottom: 18px;
color: var(--gray);
font-size: 1.05rem;
}

.social {
background: #fff1f7;
border: 1px solid #ffd0e4;
}

.social h3 {
color: var(--accent);
}

.website {
background: #eefaff;
border: 1px solid #c8f0fa;
}

.website h3 {
color: var(--primary);
}

/* SERVICES */

.services {
background: var(--section);
}

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

.service-card {
background: white;
padding: 40px;
border-radius: 30px;
transition: 0.4s;
border: 1px solid #eef1f4;
}

.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.service-icon{
  width:80px;
  height:80px;
  border-radius:22px;

  background:linear-gradient(
    135deg,
    var(--primary),
    var(--light-blue)
  );

  display:flex;
  align-items:center;
  justify-content:center;

  margin:0 auto 25px;

  font-size:2rem;
  line-height:1;

  color:white;
}

.service-card h3 {
color: var(--primary);
margin-bottom: 18px;
font-size: 1.6rem;
}

.service-card p {
color: var(--gray);
line-height: 1.8;
}

/* BENEFITS */

#beneficios{
  padding:120px 0;
  background:var(--white);
}

.beneficios-title{
  text-align:center;
  max-width:850px;
  margin:auto;
  margin-bottom:70px;
}

.beneficios-title h2{
  font-size:3rem;
  color:var(--dark);
  margin-bottom:25px;
  line-height:1.2;
}

.beneficios-title p{
  color:var(--gray);
  line-height:1.9;
}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
}

.benefit-item{
  background:white;
  padding:28px 30px;
  border-radius:24px;
  display:flex;
  align-items:center;
  gap:18px;
  box-shadow:var(--shadow);
  transition:.3s ease;
}

.benefit-item:hover{
  transform:translateY(-5px);
}

.benefit-icon{
  min-width:52px;
  height:52px;
  border-radius:15px;
  background:linear-gradient(135deg,var(--primary),var(--light-blue));
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-weight:700;
  font-size:1.1rem;
}

.benefit-item p{
  color:var(--dark);
  font-weight:600;
  line-height:1.5;
}

/* RESPONSIVE */

@media(max-width:768px){

  #beneficios{
    padding:90px 0;
  }

  .beneficios-title h2{
    font-size:2.2rem;
  }

  .benefits-grid{
    grid-template-columns:1fr;
  }

}

/* PLANS */

.plans {
background: var(--section);
}

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

.plan-card {
background: white;
padding: 50px 40px;
border-radius: 35px;
border: 1px solid #e5e5e5;
transition: 0.4s;
}

.plan-card:hover {
transform: translateY(-10px);
}

.featured {
border: 2px solid var(--accent);
transform: scale(1.05);
box-shadow: 0 20px 60px rgba(217, 35, 120, 0.12);
}

.badge {
display: inline-block;
background: var(--accent);
color: white;
padding: 10px 18px;
border-radius: 50px;
font-size: 0.8rem;
font-weight: 700;
margin-bottom: 25px;
}

.plan-card h3 {
color: var(--primary);
margin-bottom: 30px;
font-size: 2rem;
}

.plan-card ul {
list-style: none;
margin-bottom: 40px;
}

.plan-card li {
margin-bottom: 18px;
color: var(--gray);
}

/* ABOUT */

.about-box {
display: grid;
grid-template-columns: repeat(2, 1fr);
overflow: hidden;
border-radius: 40px;
box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.about-left {
background: linear-gradient(135deg, var(--dark), var(--primary));
padding: 70px;
display: flex;
align-items: center;
}

.about-left span {
color: rgba(255, 255, 255, 0.7);
font-weight: 600;
}

.about-left h2 {
color: white;
font-size: 3rem;
margin-top: 20px;
line-height: 1.2;
}

.about-right {
background: white;
padding: 70px;
display: flex;
align-items: center;
}

.about-right p {
color: var(--gray);
line-height: 2;
font-size: 1.05rem;
}

/* CTA */

.cta {
text-align: center;
background: linear-gradient(135deg, var(--dark), var(--primary));
color: white;
}

.cta h2 {
font-size: 4rem;
line-height: 1.2;
margin-bottom: 30px;
}

.cta p {
font-size: 1.2rem;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 40px;
}

/* FOOTER */

footer {
background: #1e3444;
padding: 60px 0 40px;
text-align: center;
color: rgba(255, 255, 255, 0.75);
}

footer h3 {
color: white;
font-size: 2.5rem;
margin-bottom: 15px;
}

footer p {
margin-bottom: 25px;
}

.footer-info {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
margin-bottom: 30px;
}

.copyright {
padding-top: 25px;
border-top: 1px solid rgba(255, 255, 255, 0.08);
font-size: 0.9rem;
}

/* RESPONSIVE */

@media (max-width: 992px) {
.hero-content,
.comparison,
.benefits-content,
.about-box,
.services-grid,
.plans-grid {
    grid-template-columns: 1fr;
}

.hero-text h1 {
    font-size: 3rem;
}

.section-title h2,
.cta h2 {
    font-size: 2.5rem;
}

.featured {
    transform: scale(1);
}
}

@media (max-width: 768px) {
.menu {
    display: none;
}

section {
    padding: 80px 0;
}

.hero-text h1 {
    font-size: 2.4rem;
}

.hero-buttons {
    flex-direction: column;
}

.comparison-card,
.service-card,
.plan-card,
.about-left,
.about-right {
    padding: 40px 30px;
}

.floating-card {
    display: none;
}

.section-title h2,
.cta h2,
.about-left h2 {
    font-size: 2rem;
}
}
   
/* MODAL SERVICIO 1 */
body.modal-open{
  overflow:hidden;
}

.modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 5000;
}

.modal-content{
  width: 100%;
  max-width: 950px;
  max-height: 90vh;
  overflow-y: auto;
  background: white;
  border-radius: 35px;
  padding: 50px;
  position: relative;
  animation: modalEntrada .35s ease;
}

.modal-content::-webkit-scrollbar{
  width:10px;
}

.modal-content::-webkit-scrollbar-thumb{
  background:#0477BF;
  border-radius:50px;
}

.modal-content::-webkit-scrollbar-track{
  background:#f1f1f1;
}

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

.cerrar-modal{
  position: absolute;
  top: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f4f4f4;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-weight:bold;
  transition:.3s;
}

.cerrar-modal:hover{
  background:#D92378;
  color:white;
}

.modal-header{
  text-align:center;
  margin-bottom:50px;
}

.modal-badge{
  display:inline-block;
  padding:10px 22px;
  background:#eefaff;
  color:#0477BF;
  border-radius:50px;
  font-weight:700;
  margin-bottom:25px;
}

.modal-header h2{
  font-size:2.5rem;
  color:#2F5973;
  margin-bottom:20px;
}

.modal-header p{
  color:#5f6670;
  line-height:1.8;
  max-width:700px;
  margin:auto;
}

.mini-preview{
  margin-bottom:50px;
}

.preview-browser{
  background:white;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.preview-top{
  background:#1e1e1e;
  padding:15px;
  display:flex;
  gap:8px;
}

.preview-top span{
  width:12px;
  height:12px;
  border-radius:50%;
}

.preview-top span:nth-child(1){
  background:#ff5f56;
}

.preview-top span:nth-child(2){
  background:#ffbd2e;
}

.preview-top span:nth-child(3){
  background:#27c93f;
}

.preview-body{
  padding:35px;
}

.preview-banner{
  height:160px;
  border-radius:25px;
  background:linear-gradient(135deg,#0477BF,#04B2D9);
  margin-bottom:25px;
}

.preview-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px;
  margin-bottom:25px;
}

.preview-grid div{
  height:120px;
  border-radius:20px;
}

.preview-grid div:nth-child(1){
  background:#F2EEAC;
}

.preview-grid div:nth-child(2){
  background:#D92378;
}

.preview-grid div:nth-child(3){
  background:#04B2D9;
}

.preview-line{
  height:14px;
  border-radius:50px;
  background:#ececec;
  margin-bottom:12px;
}

.preview-line.small{
  width:70%;
}

.modal-info{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
  margin-bottom:50px;
}

.info-item{
  background:#f7fbfd;
  padding:30px;
  border-radius:25px;
}

.info-item h3{
  margin-bottom:15px;
  color:#0477BF;
}

.info-item p{
  color:#5f6670;
  line-height:1.8;
}

.modal-benefits{
  margin-bottom:40px;
}

.modal-benefits h3{
  color:#2F5973;
  margin-bottom:25px;
}

.modal-benefits ul{
  padding-left:20px;
}

.modal-benefits li{
  margin-bottom:15px;
  color:#5f6670;
}

.modal-time{
  background:#eefaff;
  padding:25px;
  border-radius:20px;
  margin-bottom:35px;
  color:#0477BF;
  font-weight:600;
}

.modal-price{
  text-align:center;
  padding:45px;
  border-radius:30px;
  background:linear-gradient(135deg,#2F5973,#0477BF);
  color:white;
  margin-bottom:40px;
}

.modal-price span{
  opacity:.8;
}

.modal-price h2{
  font-size:3rem;
  margin:20px 0;
}

.modal-price p{
  opacity:.85;
  line-height:1.8;
}

.modal-cta{
  text-align:center;
}

.modal-cta h3{
  margin-bottom:25px;
  color:#2F5973;
}

/* =========================
   CONTACTO
========================= */

.contact-section{
  padding:120px 0;
  background:#f7fbfd;
}

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

.section-tag{
  display:inline-block;
  padding:10px 22px;
  background:#eefaff;
  color:#0477BF;
  border-radius:50px;
  font-weight:700;
  margin-bottom:25px;
}

.contact-info h2{
  font-size:3rem;
  color:#2F5973;
  margin-bottom:25px;
  line-height:1.2;
}

.contact-info p{
  color:#5f6670;
  line-height:1.9;
  margin-bottom:35px;
}

.contact-benefits{
  display:grid;
  gap:18px;
  margin-bottom:40px;
}

.benefit-item{
  background:white;
  padding:18px 24px;
  border-radius:18px;
  font-weight:600;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.whatsapp-card{
  background:white;
  border-radius:25px;
  padding:25px;
  display:flex;
  gap:20px;
  align-items:center;
  margin-bottom:30px;
  box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.whatsapp-icon{
  width:70px;
  height:70px;
  border-radius:20px;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
}

.whatsapp-card h3{
  margin-bottom:10px;
  color:#2F5973;
}

.whatsapp-card p{
  margin:0;
}

.contact-form-container{
  background:white;
  padding:45px;
  border-radius:35px;
  box-shadow:0 20px 50px rgba(0,0,0,.06);
}

.contact-form{
  display:grid;
  gap:25px;
}

.form-group{
  display:grid;
  gap:10px;
}

.form-group label{
  font-weight:700;
  color:#2F5973;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:16px 18px;
  border:none;
  border-radius:16px;
  background:#f4f7fa;
  font-family:'Open Sans', sans-serif;
  font-size:1rem;
  outline:none;
  transition:.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  background:white;
  box-shadow:0 0 0 3px rgba(4,119,191,.15);
}

textarea{
  resize:none;
}

.btn-full{
  width:100%;
}

/* =========================
   SOFTWARE A MEDIDA
========================= */

.software-section{
  padding:120px 0;
  background:white;
  text-align: center;
}

.section-header{
  text-align:center;
  max-width:850px;
  margin:auto;
  margin-bottom:70px;
}

.section-header h2{
  font-size:3rem;
  color:#2F5973;
  margin:25px 0;
  line-height:1.2;
}

.section-header p{
  color:#5f6670;
  line-height:1.9;
}

.software-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
  margin-bottom:70px;
}

.software-card{
  background:#f7fbfd;
  border-radius:30px;
  padding:40px;
  transition:.35s;
  border:1px solid transparent;
}

.software-card:hover{
  transform:translateY(-8px);
  border-color:#04B2D9;
  box-shadow:0 20px 45px rgba(0,0,0,.06);
}

.software-icon{
  width:80px;
  height:80px;
  border-radius:22px;

  background:linear-gradient(
    135deg,
    var(--primary),
    var(--light-blue)
  );

  display:flex;
  align-items:center;
  justify-content:center;

  margin:0 auto 25px;

  font-size:2rem;
  line-height:1;
}

.software-card h3{
  color:#2F5973;
  margin-bottom:18px;
  font-size:1.5rem;
}

.software-card p{
  color:#5f6670;
  line-height:1.8;
  margin-bottom:25px;
}

.software-card ul{
  display:grid;
  gap:14px;
  margin-top:25px;
}

.software-card li{
  list-style:none;
  color:var(--dark);
  font-weight:600;
}

.software-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 60px rgba(15,23,42,.12);
}

.software-cta{
  text-align:center;
  background:linear-gradient(135deg,#2F5973,#0477BF);
  padding:70px 40px;
  border-radius:40px;
  color:white;
}

.software-cta h3{
  font-size:2.3rem;
  margin-bottom:20px;
}

.software-cta p{
  max-width:700px;
  margin:auto;
  margin-bottom:35px;
  line-height:1.9;
  opacity:.9;
}

.footer-author{
  margin-top:40px;
  margin-bottom:25px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.footer-author span{
  color:rgba(255,255,255,.7);
  font-size:.95rem;
  letter-spacing:1px;
  text-transform:uppercase;
}

.footer-author strong{
  font-size:1.3rem;
  color:#F2EEAC;
  font-family:'Montserrat', sans-serif;
  font-weight:700;
}

/* RESPONSIVE */

@media(max-width:992px){

  .software-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .software-section{
    padding:90px 0;
  }

  .section-header h2{
    font-size:2.2rem;
  }

  .software-card{
    padding:30px;
  }

  .software-cta{
    padding:50px 25px;
  }

  .software-cta h3{
    font-size:1.8rem;
  }

}

/* RESPONSIVE */

@media(max-width:992px){

  .contact-container{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .contact-section{
    padding:90px 0;
  }

  .contact-info h2{
    font-size:2.2rem;
  }

  .contact-form-container{
    padding:30px 25px;
  }

  .whatsapp-card{
    flex-direction:column;
    text-align:center;
  }

}

/* RESPONSIVE */

@media(max-width:768px){

  .modal-content{
    padding:35px 25px;
  }

  .modal-header h2{
    font-size:2rem;
  }

  .modal-info{
    grid-template-columns:1fr;
  }

  .preview-grid{
    grid-template-columns:1fr;
  }

  .modal-price h2{
    font-size:2.2rem;
  }

}
/* MODAL SERVICIO 1 */

/* MODAL SERVICIO 2 WEB NEGOCIO MOCKUP */
.web-banner{
  background: linear-gradient(135deg,#2F5973,#0477BF);
}

.web-layout{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:20px;
}

.web-sidebar{
  background:#F2EEAC;
  border-radius:20px;
  min-height:260px;
}

.web-content{
  display:grid;
  grid-template-columns:1fr;
  gap:15px;
}

.web-content div{
  border-radius:18px;
  height:75px;
}

.web-content div:nth-child(1){
  background:#04B2D9;
}

.web-content div:nth-child(2){
  background:#D92378;
}

.web-content div:nth-child(3){
  background:#dfeff5;
}

@media(max-width:768px){

  .web-layout{
    grid-template-columns:1fr;
  }

  .web-sidebar{
    min-height:120px;
  }

}
/* MODAL SERVICIO 2 WEB NEGOCIO MOCKUP */


/* MODAL SERVICIO 3 CATÁLOGO */
.catalogo-banner{
  background: linear-gradient(135deg,#D92378,#0477BF);
}

.catalogo-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.catalogo-card{
  height:180px;
  border-radius:25px;
  position:relative;
  overflow:hidden;
}

.catalogo-card:nth-child(1){
  background:#F2EEAC;
}

.catalogo-card:nth-child(2){
  background:#04B2D9;
}

.catalogo-card:nth-child(3){
  background:#D92378;
}

.catalogo-card:nth-child(4){
  background:#2F5973;
}

.catalogo-card::before{
  content:'';
  position:absolute;
  width:80%;
  height:18px;
  background:rgba(255,255,255,.6);
  left:10%;
  bottom:25px;
  border-radius:50px;
}

.catalogo-card::after{
  content:'';
  position:absolute;
  width:55%;
  height:12px;
  background:rgba(255,255,255,.4);
  left:10%;
  bottom:50px;
  border-radius:50px;
}

@media(max-width:768px){

  .catalogo-grid{
    grid-template-columns:1fr;
  }

}
/* MODAL SERVICIO 3 CATÁLOGO */


/* MODAL CORREO */
.success-modal{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,.65);

  display:flex;
  align-items:center;
  justify-content:center;

  padding:20px;

  opacity:0;
  visibility:hidden;

  transition:.35s ease;

  z-index:9999;
}

.success-modal.active{
  opacity:1;
  visibility:visible;
}

.success-box{
  background:white;
  width:100%;
  max-width:420px;

  padding:45px 35px;

  border-radius:32px;

  text-align:center;

  transform:translateY(20px);

  transition:.35s ease;
}

.success-modal.active .success-box{
  transform:translateY(0);
}

.success-icon{
  width:85px;
  height:85px;

  margin:0 auto 25px;

  border-radius:50%;

  background:linear-gradient(
    135deg,
    var(--primary),
    var(--light-blue)
  );

  display:flex;
  align-items:center;
  justify-content:center;

  color:white;

  font-size:2rem;
  font-weight:700;
}

.success-box h3{
  font-size:2rem;
  color:var(--dark);
  margin-bottom:18px;
}

.success-box p{
  color:var(--gray);
  line-height:1.8;
  margin-bottom:30px;
}

.success-box button{
  border:none;
  background:var(--primary);
  color:white;

  padding:14px 30px;

  border-radius:14px;

  font-weight:600;

  cursor:pointer;

  transition:.3s;
}

.success-box button:hover{
  transform:translateY(-2px);
}
/* MODAL CORREO */

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

.menu-toggle{
  display:none;
  font-size:2rem;
  cursor:pointer;
  color:var(--dark);
}

/* MOBILE */

@media(max-width:768px){

  nav{
    position:relative;
  }

  .menu-toggle{
    display:block;
  }

  .menu{

    position:absolute;

    top:90px;
    right:0;

    width:100%;

    background:white;

    border-radius:24px;

    padding:25px;

    display:flex;
    flex-direction:column;
    gap:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    opacity:0;
    visibility:hidden;
    transform:translateY(-10px);

    transition:.3s ease;
  }

  .menu.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

}