 :root {
   --bg: #e2e2e2;
   --card: #1c53dfcc;
   --text: #34353d;
   --text2: rgb(211, 211, 211)e;
   --muted: #a7a7ac;
   --stroke: #0d7a1b;
   --accent: #060927;
   --accent2: #06d6a0;
   --shadow: 0 20px 60px rgba(29, 30, 88, 0.35);
   --radius: 18px;
   --max: 1100px;
 }

 * {
   box-sizing: border-box;
 }

 html,
 body {
   height: 100%;
   background-image: url(img/logo.png);
   background-position: center;
   background-attachment: fixed;
 }

 body {
   margin: 0;
   font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
   color: var(--text);
   line-height: 1.5;
   background-color: var(--bg);
 }

 a {
   color: rgb(68, 68, 68);
   text-decoration: none;
 }

 .container {
   width: min(100% - 32px, var(--max));
   margin-inline: auto;
 }

 header {
   position: sticky;
   top: 0;
   z-index: 20;
   backdrop-filter: blur(10px);
   background: rgb(247, 247, 247);
   border-bottom: 1px solid rgba(36, 52, 88, .35);
 }

 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   padding: 14px 0;
   gap: 14px;
 }

 .brand {
   display: flex;
   align-items: center;
   gap: 10px;
   min-width: 220px;
 }


 .logo {
   width: 128px;
   height: 42px;
   border-radius: 12px;
   background: url(img/logo-t.png);
   background-size: cover;
   background-position: center;
   box-shadow: 0 10px 30px rgba(255, 209, 102, .18);
   border: 1px solid rgba(255, 255, 255, .15);
 }

 .brand h1 {
   font-size: 16px;
   line-height: 1.1;
   margin: 0;
   letter-spacing: .2px;
 }

 .brand span {
   display: block;
   font-size: 12px;
   color: var(--muted);
   margin-top: 2px;
 }

 .navlinks {
   display: none;
   gap: 18px;
   color: var(--muted);
   font-size: 14px;
 }

 .navlinks a:hover {
   color: var(--text);
 }

 .ctaTop {
   display: flex;
   gap: 10px;
   align-items: center;
   justify-content: flex-end;
   flex: 1;
 }

 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   padding: 11px 14px;
   border-radius: 14px;
   border: 1px solid rgba(36, 52, 88, .7);
   background: rgba(15, 26, 51, .55);
   color: var(--text);
   font-weight: 600;
   font-size: 14px;
   cursor: pointer;
   transition: transform .15s ease, background .15s ease, border-color .15s ease;
   white-space: nowrap;
   color: white;
 }

 .btn:hover {
   transform: translateY(-1px);
   background: rgba(15, 26, 51, .75);
   border-color: rgba(255, 255, 255, .25);
 }

 .btn.primary {
   border-color: rgba(6, 214, 160, .55);
   background: linear-gradient(135deg, rgba(6, 214, 160, .75), rgba(255, 209, 102, .55));
 }

 .btn.primary-dark {
   border-color: rgba(3, 145, 107, 0.863);
   background: linear-gradient(135deg, rgba(0, 158, 116, 0.945), rgba(255, 209, 102, .55));
 }

 .btn.primary:hover {
   border-color: rgba(6, 214, 160, .85);
 }

 /* Hero */
 .hero {
   position: relative;
   border-bottom: 1px solid rgba(36, 52, 88, .35);
   overflow: hidden;
 }

 .hero::before {
   content: "";
   position: absolute;
   inset: 0;
   background-image: linear-gradient(to bottom, rgb(235 236 239 / 35%), rgb(207 207 207 / 92%));
   background-size: cover;
   background-position: center;
   filter: saturate(1.1) contrast(1.05);
   transform: scale(1.03);
 }

 .heroContent {
   position: relative;
   padding: 52px 0 34px;
 }

 .badge {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 8px 12px;
   border-radius: 999px;
   background: rgba(49, 93, 196, 0.55);
   border: 1px solid rgba(255, 255, 255, .16);
   color: var(--muted);
   font-size: 13px;
 }

 .badge .dot {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: var(--accent2);
   box-shadow: 0 0 0 6px rgba(6, 214, 160, .12);
 }

 .heroGrid {
   display: grid;
   gap: 18px;
   grid-template-columns: 1fr;
   margin-top: 14px;
   align-items: end;
 }

 .hero h2 {
   margin: 10px 0 0;
   font-size: 34px;
   line-height: 1.08;
   letter-spacing: -.5px;
 }

 .hero p {
   margin: 12px 0 0;
   color: rgba(234, 240, 255, .86);
   font-size: 16px;
   max-width: 60ch;
 }

 .heroActions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-top: 18px;
 }

 .card {
   background: rgba(15, 26, 51, .6);
   border: 1px solid rgba(255, 255, 255, .12);
   border-radius: var(--radius);
   box-shadow: var(--shadow);
 }

 .infoCard {
   padding: 16px;
   display: grid;
   gap: 12px;
 }

 .infoRow {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }

 .icon {
   width: 38px;
   height: 38px;
   border-radius: 14px;
   background: rgba(255, 255, 255, .08);
   border: 1px solid rgba(255, 255, 255, .12);
   display: grid;
   place-items: center;
   flex: 0 0 auto;
 }

 .infoRow h3 {
   margin: 0;
   font-size: 14px;
   letter-spacing: .2px;
 }

 .infoRow p {
   margin: 3px 0 0;
   color: var(--muted);
   font-size: 13px;
 }

 /* Sections */
 section {
   padding: 34px 0;
   background-image: linear-gradient(to bottom, rgb(235 236 239 / 94%), rgba(207, 207, 207, 0.979));
 }

 .sectionTitle {
   display: flex;
   align-items: end;
   justify-content: space-between;
   gap: 12px;
   margin-bottom: 14px;
 }

 .sectionTitle h3 {
   margin: 0;
   font-size: 20px;
   letter-spacing: -.2px;
 }

 .sectionTitle span {
   color: var(--muted);
   font-size: 13px;
 }

 .features {
   display: grid;
   grid-template-columns: 1fr;
   gap: 12px;
 }

 .feature {
   padding: 16px;
 }

 .feature b {
   display: block;
   margin-bottom: 6px;
 }

 .feature p {
   margin: 0;
   color: var(--muted);
   font-size: 14px;
 }

 .ctaBox {
   padding: 18px;
   display: grid;
   gap: 14px;
   align-items: center;
 }

 .ctaBox h4 {
   margin: 0;
   font-size: 18px;
 }

 .ctaBox p {
   margin: 6px 0 0;
   color: var(--muted);
 }

 .ctaBtns {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }

 footer {
   padding: 22px 0 40px;
   color: rgba(67, 79, 117, 0.9);
   border-top: 1px solid rgba(36, 52, 88, .35);
 }

 footer small {
   opacity: .9;
 }

 /* Responsive */
 @media (min-width: 900px) {
   .navlinks {
     display: flex;
   }

   .heroContent {
     padding: 64px 0 44px;
   }

   .heroGrid {
     grid-template-columns: 1.2fr .8fr;
     gap: 22px;
   }

   .hero h2 {
     font-size: 46px;
   }

   .features {
     grid-template-columns: repeat(2, 1fr);
   }

   .ctaBox {
     grid-template-columns: 1.3fr .7fr;
   }
 }

 @media screen and (max-width: 1000px) {


   .features .img {
     width: 100%;
     text-align: center;
   }
 }

 #galeria {
   padding: 34px 0;
 }

 #galeria .sectionTitle {
   display: flex;
   align-items: end;
   justify-content: space-between;
   gap: 12px;
   margin-bottom: 14px;
 }

 #galeria .sectionTitle h3 {
   margin: 0;
   font-size: 20px;
   letter-spacing: -.2px;
 }

 h4 {
   margin: 0;
   letter-spacing: -.2px;
 }

 #galeria .sectionTitle span {
   color: var(--muted, #b8c3e6);
   font-size: 13px;
 }

 #galeria .carousel {
   position: relative;
   border-radius: var(--radius, 18px);
   border: 1px solid rgba(255, 255, 255, .12);
   overflow-x: hidden;
   box-shadow: var(--shadow, 0 20px 60px rgba(0, 0, 0, .35));
 }

 #galeria .track {
   display: grid;
   grid-auto-flow: column;
   grid-auto-columns: 86%;
   gap: 12px;
   padding: 12px;
   overflow-x: auto;
   scroll-snap-type: x mandatory;
   scroll-behavior: smooth;
   -webkit-overflow-scrolling: touch;
   scrollbar-width: none;
   /* Firefox */
 }

 #galeria .track::-webkit-scrollbar {
   display: none;
 }

 /* Chrome/Safari */

 #galeria .slide {
   cursor: zoom-in;
   scroll-snap-align: center;
   border-radius: calc(var(--radius, 18px) - 6px);
   overflow: hidden;
   position: relative;
   border: 1px solid rgba(255, 255, 255, .10);
   background: rgba(255, 255, 255, .06);
   min-height: 240px;
   isolation: isolate;
 }

 #galeria .slide img {
   width: 100%;
   height: auto;
   object-fit: cover;
   display: block;
   aspect-ratio: 9/16;
   filter: saturate(1.05) contrast(1.05);
   transform: scale(1.02);
 }

 #galeria .slide::after {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(to top, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0) 55%);
   z-index: 1;
   pointer-events: none;
 }

 #galeria .caption {
   position: absolute;
   left: 14px;
   right: 14px;
   bottom: 12px;
   z-index: 2;
   display: flex;
   align-items: flex-end;
   justify-content: space-between;
   gap: 12px;
 }

 .zoom {
   cursor: zoom-out !important;
   left: 0px;
   top: 0px;
   position: fixed !important;
   z-index: 2000 !important;
   height: auto !important;
   width: 100% !important;
   height: 100% !important;
   object-fit: cover !important;
   aspect-ratio: 1/1 !important;
   display: flex !important;
   justify-content: center;
   align-items: center;
   margin: 0px !important;
 }

 .zoom img {
   width: 90% !important;
   object-fit: cover !important;
   aspect-ratio: 9/16 !important;
   height: auto !important;
   max-width: 600px !important;
   z-index: 2001;

 }

 .zoom::before {
   display: flex !important;
   justify-content: center;
   align-items: center;
   content: "";
   position: fixed;
   left: 0px;
   top: 0px;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.548);
 }

 .zoom2 {
   cursor: zoom-out !important;
   left: 0px;
   top: 0px;
   position: fixed !important;
   z-index: 2000 !important;
   height: auto !important;
   width: 100% !important;
   height: 100% !important;
   aspect-ratio: 1/1 !important;
   display: flex !important;
   justify-content: center;
   align-items: center;
   margin: 0px !important;
 }

 .zoom2 img {
   width: 90% !important;
   object-fit: cover;
   height: auto !important;
   max-width: 600px !important;
   z-index: 2001;

 }

 .zoom2::before {
   display: flex !important;
   justify-content: center;
   align-items: center;
   content: "";
   position: fixed;
   left: 0px;
   top: 0px;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.548);
 }

 #galeria .caption b {
   display: block;
   font-size: 14px;
   letter-spacing: .2px;
 }

 #galeria .caption a {
   color: black;
   width: 100%;
   text-align: center;
 }

 #galeria .caption small,
 #galeria .caption b {
   display: block;
   color: black;
   opacity: .9;
   padding: 5px;
   background-color: #b3b3b3;
   border-color: #b8c3e6;
   border-style: solid;
   border-width: 1px;
   border-radius: 15px;
   font-size: 12px;
   text-align: center;
   margin-top: 2px;
 }

 #galeria .chip {
   flex: 0 0 auto;
   font-size: 12px;
   color: rgba(234, 240, 255, .9);
   padding: 6px 10px;
   border-radius: 999px;
   border: 1px solid rgba(255, 255, 255, .18);
   background: rgba(15, 26, 51, .55);
   backdrop-filter: blur(8px);
   white-space: nowrap;
 }

 /* Fades laterales para “queda lindo” */
 #galeria .fadeLeft,
 #galeria .fadeRight {
   position: absolute;
   top: 0;
   bottom: 0;
   width: 56px;
   pointer-events: none;
   z-index: 3;
 }

 #galeria .fadeLeft {
   left: 0;
   background: linear-gradient(to right, rgba(194, 197, 206, 0.95), rgba(11, 18, 32, 0));
 }

 #galeria .fadeRight {
   right: 0;
   background: linear-gradient(to left, rgba(194, 197, 206, 0.95), rgba(11, 18, 32, 0));
 }

 /* Dots */
 #galeria .dots {
   display: flex;
   justify-content: center;
   gap: 8px;
   padding: 10px 0 2px;
 }

 #galeria .dot {
   width: 8px;
   height: 8px;
   border-radius: 999px;
   border: 1px solid rgba(255, 255, 255, .25);
   background: rgba(255, 255, 255, .10);
   opacity: .7;
   transition: transform .15s ease, opacity .15s ease, background .15s ease;
 }

 #galeria .dot.active {
   opacity: 1;
   transform: scale(1.15);
   background: rgba(255, 255, 255, .22);
 }

 @media (min-width: 900px) {
   #galeria .track {
     grid-auto-columns: 46%;
   }
 }

 @media (min-width: 1200px) {
   #galeria .track {
     grid-auto-columns: 38%;
   }
 }

 .frame {
   width: 100%;
   aspect-ratio: 9/16;
   overflow: hidden;
   border-radius: 12px;
   display: flex;
   justify-content: center;
 }

 .frame video {
   width: 100%;
   max-width: 900px;
   height: 100%;
   object-fit: cover;
   object-position: center;
 }