@font-face{
font-display: swap;
font-family: 'Inter';
font-style: normal;
font-weight: 300;
src: url('fonts/inter-v20-latin-300.woff2') format('woff2');
}
@font-face{
font-display: swap;
font-family: 'Inter';
font-style: normal;
font-weight: 400;
src: url('fonts/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face{
font-display: swap;
font-family: 'Inter';
font-style: normal;
font-weight: 600;
src: url('fonts/inter-v20-latin-600.woff2') format('woff2');
}
@font-face{
font-display: swap;
font-family: 'Inter';
font-style: normal;
font-weight: 700;
src: url('fonts/inter-v20-latin-700.woff2') format('woff2');
}
:root{
--primary: #0056b3;
--accent: #00a8e8;
--dark: #f5f5f7;
--navbar-bg: #0b0b0b;
--light: #18191a;
--white: #0f1011;
--gray: #a1a1a6;
--highlight-bg: #1e2530;
--card-bg: #18191a;
--border-color: #2d2d2d;
--text-muted: #cccccc;
--success: #2ecc71;
--table-row-alt: #1a1b1c;
}
html{
scroll-behavior: smooth;
scroll-padding-top: 100px;
}
*{ 
margin: 0; 
padding: 0; 
box-sizing: border-box; 
}
body{
font-family: 'Inter', sans-serif;
background-color: var(--white);
color: var(--dark);
line-height: 1.6;
width: 100%;
overflow-x: hidden; 
}
.skip-link{
position: absolute;
top: -50px;
left: 0;
background: var(--primary);
color: white;
padding: 12px 24px;
z-index: 10001;
text-decoration: none;
font-weight: 600;
border-radius: 0 0 8px 0;
transition: top 0.3s ease;
}
.skip-link:focus{
top: 0;
outline: 2px solid var(--accent);
outline-offset: 2px;
}
.navbar{
position: fixed;
top: 0;
left: 0;
width: 100%;
min-height: 90px;
background-color: var(--navbar-bg); 
border-bottom: 1px solid rgba(255,255,255,0.1);
display: flex; 
justify-content: space-between; 
align-items: center;
padding: 0 8%;
z-index: 1000;
box-shadow: 0 4px 15px rgba(0,0,0,0.3);
gap: 40px;
}
.logo{ 
display: flex; 
align-items: center;
flex-shrink: 0;
}
.logo-img{ 
height: 80px;
width: auto; 
filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
display: block;
transition: transform 0.3s ease;
}
.logo-img:hover{
transform: scale(1.05);
}
.nav-links{ 
list-style: none; 
display: flex; 
align-items: center; 
gap: 30px;
flex: 1;
justify-content: center;
}
.nav-links li a{ 
text-decoration: none; 
color: rgba(255,255,255,0.95);
font-weight: 500; 
font-size: 0.95rem; 
transition: color 0.3s ease; 
}
.nav-links li a:hover{ 
color: var(--accent); 
}
.navbar-right{
display: flex;
align-items: center;
gap: 20px;
flex-shrink: 0;
}
.btn-nav{ 
background: var(--primary); 
color: white !important; 
padding: 10px 25px; 
border-radius: 50px; 
font-weight: 600;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
}
.btn-nav:hover{ 
background: var(--accent);
transform: translateY(-2px);
}
.social-links{
display: flex;
align-items: center;
gap: 16px;
}
.social-links a{
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.05);
color: rgba(255, 255, 255, 0.85);
transition: all 0.3s ease;
text-decoration: none;
}
.social-links a:hover{
background: rgba(0, 168, 232, 0.15);
color: var(--accent);
transform: translateY(-2px);
}
.social-links svg{
width: 20px;
height: 20px;
}
.hero, .about-hero{
min-height: 85vh;
display: flex; 
align-items: center; 
justify-content: center;
text-align: center; 
padding: 160px 10% 100px;
background: radial-gradient(circle at center, #001529 0%, #0b0b0b 100%);
position: relative;
z-index: 1;
}
.hero-content{ 
max-width: 850px; 
}
.hero h1, .about-hero h1{ 
font-size: 3.8rem; 
line-height: 1.1; 
margin-bottom: 20px;
letter-spacing: -1px; 
color: #ffffff; 
}
.hero h1 span, .about-hero h1 span{ 
color: var(--accent); 
}
.hero-subtitle{
font-size: 1.1rem;
font-weight: 500;
color: rgba(255, 255, 255, 0.9);
margin: 1rem 0 1.5rem;
max-width: 700px;
line-height: 1.6;
margin-left: auto;
margin-right: auto;
}
.hero-subtitle strong{
color: var(--accent);
font-weight: 700;
}
.hero p, .about-hero p{ 
font-size: 1.25rem; 
color: var(--text-muted); 
margin-bottom: 40px; 
max-width: 750px;
margin-left: auto; 
margin-right: auto;
}
.hero-btns{
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}
.btn-primary, .btn-secondary{ 
text-decoration: none; 
padding: 15px 35px; 
border-radius: 30px; 
font-weight: 600; 
display: inline-block; 
transition: all 0.3s ease; 
border: none; 
cursor: pointer;
}
.btn-primary{ 
background: var(--primary); 
color: white; 
}
.btn-secondary{ 
background: transparent; 
color: var(--dark); 
border: 1px solid rgba(255,255,255,0.5); 
}
.btn-primary:hover{ 
transform: translateY(-3px); 
box-shadow: 0 10px 20px rgba(0,86,179,0.3); 
}
.btn-secondary:hover{ 
border-color: white; 
background: rgba(255,255,255,0.1); 
transform: translateY(-3px); 
box-shadow: 0 10px 20px rgba(255,255,255,0.1); 
}
.section-title{ 
text-align: center; 
margin-bottom: 60px; 
font-size: 2.5rem; 
letter-spacing: -1px;
color: var(--dark);
}
.services, 
.pricing-section, 
.extras-section, 
.faq-section, 
.contact-section, 
.about-section, 
.values-section{ 
padding: 100px 10%; 
}
.services, .values-section{ 
background: var(--light); 
}
.pricing-section,
.extras-section,
.faq-section,
.contact-section{
background: var(--white);
}
.about-section{ 
background: var(--white); 
}
.grid{ 
display: grid; 
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
gap: 30px; 
}
.card{ 
background: var(--card-bg); 
padding: 45px; 
border-radius: 24px; 
transition: all 0.3s ease; 
border: 1px solid var(--border-color);
color: var(--dark);
}
.card:hover{ 
transform: translateY(-10px); 
box-shadow: 0 20px 40px rgba(0,0,0,0.3); 
}
.card .icon{ 
font-size: 3rem; 
margin-bottom: 20px; 
}
.card h3{
color: var(--dark);
margin-bottom: 15px;
}
.card p{
color: var(--gray);
}
.table-container{ 
overflow-x: auto; 
background: var(--card-bg); 
border-radius: 24px; 
box-shadow: 0 15px 40px rgba(0,0,0,0.2);
position: relative;
}
.table-container::-webkit-scrollbar{
height: 8px;
}
.table-container::-webkit-scrollbar-track{
background: #1a1a1a;
border-radius: 4px;
}
.table-container::-webkit-scrollbar-thumb{
background: var(--primary);
border-radius: 4px;
}
.table-container::-webkit-scrollbar-thumb:hover{
background: var(--accent);
}
.pricing-table{ 
width: 100%; 
border-collapse: collapse; 
text-align: center; 
min-width: 600px; 
}
.pricing-table th{ 
padding: 25px; 
border-bottom: 1px solid var(--border-color);
background: var(--card-bg);
color: var(--dark);
}
.pricing-table td{ 
padding: 25px; 
border-bottom: 1px solid var(--border-color);
background: var(--card-bg);
color: var(--dark);
}
.highlight{ 
background: var(--primary) !important; 
color: white !important; 
}
.price-row td{ 
background: var(--table-row-alt) !important; 
font-weight: 700; 
font-size: 1.15rem; 
}
.highlight-price{ 
color: var(--accent) !important; 
font-size: 1.4rem !important; 
}
.row-highlight td{
background-color: var(--highlight-bg) !important;
}
.feature-title{
font-weight: 700;
color: var(--accent) !important;
}
.included-text{
font-weight: 800;
color: var(--success) !important;
letter-spacing: 0.5px;
}
.extras-grid{ 
display: grid; 
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
gap: 30px; 
}
.extra-card{ 
border: 1px solid var(--border-color); 
padding: 35px; 
border-radius: 20px; 
background: var(--card-bg);
transition: all 0.3s ease;
}
.extra-card:hover{
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
transform: translateY(-5px);
}
.extra-card h3{
color: var(--dark);
margin-bottom: 20px;
}
.price-list{ 
list-style: none; 
padding: 0; 
}
.price-list li{ 
display: flex; 
justify-content: space-between; 
padding: 12px 0; 
border-bottom: 1px dashed var(--border-color);
color: var(--dark);
}
.price-list li span{
color: var(--gray);
}
.price-list strong{ 
color: var(--accent); 
}
.star-product{
background: var(--highlight-bg);
padding: 15px;
margin: 5px 0;
border-radius: 8px;
border-left: 4px solid var(--primary);
}
.featured-card{
border: 2px solid var(--primary);
position: relative;
overflow: hidden;
}
.featured-card::before{
content: "POPULAR";
position: absolute;
top: 15px;
right: -25px;
background: var(--primary);
color: white;
padding: 5px 30px;
transform: rotate(45deg);
font-size: 0.7rem;
font-weight: bold;
}
.faq-grid{ 
display: grid; 
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
gap: 40px; 
}
.faq-item h4{ 
color: var(--accent); 
margin-bottom: 15px; 
font-size: 1.1rem; 
}
.faq-item p{ 
color: var(--gray); 
font-size: 0.95rem; 
}
.contact-container{ 
display: grid; 
grid-template-columns: 1fr 1fr; 
gap: 80px; 
align-items: center; 
}
.contact-info h2{
color: var(--dark);
margin-bottom: 15px;
}
.contact-info p{
color: var(--gray);
}
.contact-form{ 
display: flex; 
flex-direction: column; 
gap: 15px; 
}
.contact-form input, 
.contact-form textarea, 
.select-field{ 
padding: 18px; 
border-radius: 12px; 
border: 1px solid var(--border-color);
background: var(--card-bg);
color: var(--dark);
font-family: inherit; 
font-size: 1rem;
transition: border-color 0.3s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{
color: var(--gray);
}
.contact-form input:focus,
.contact-form textarea:focus,
.select-field:focus{
outline: none;
border-color: var(--accent);
}
.select-field{
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a1a1a6' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 18px center;
padding-right: 45px;
}
.select-field option{
background: var(--card-bg);
color: var(--dark);
}
.legal-check{ 
display: flex; 
align-items: center; 
gap: 10px; 
font-size: 0.85rem; 
color: var(--gray); 
margin: 10px 0; 
}
.legal-check a{
color: var(--accent);
text-decoration: underline;
}
.legal-check input[type="checkbox"]{
width: 18px;
height: 18px;
accent-color: var(--accent);
}
.whatsapp-float{
position: fixed; 
width: 60px; 
height: 60px; 
bottom: 40px; 
right: 40px;
background-color: #25d366; 
color: #FFF; 
border-radius: 50px; 
text-align: center;
font-size: 30px; 
box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); 
z-index: 1000; 
transition: all 0.3s ease;
display: flex; 
align-items: center; 
justify-content: center;
}
.whatsapp-float:hover{ 
background-color: #128c7e; 
transform: scale(1.1); 
box-shadow: 0 6px 20px rgba(18, 140, 126, 0.5);
}
.whatsapp-float i{ 
margin-top: 2px; 
}
.whatsapp-float svg{
width: 30px;
height: 30px;
fill: currentColor;
}
.about-container{
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
overflow: visible;
}
.about-text p{
margin-bottom: 20px;
font-size: 1.05rem;
line-height: 1.8;
color: var(--gray);
}
.about-text strong{
color: var(--dark);
}
.about-image img{
width: 100%;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.value-card:hover{
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.value-card h3{
color: var(--dark);
}
.value-card p{
color: var(--gray);
}
.cookie-banner{ 
position: fixed; 
bottom: -100%; 
left: 0; 
width: 100%; 
background-color: #0b0b0b; 
color: white; 
padding: 20px 5%; 
box-shadow: 0 -5px 20px rgba(0,0,0,0.3); 
z-index: 99999; 
transition: bottom 0.5s ease-in-out; 
border-top: 1px solid rgba(255,255,255,0.1); 
font-family: 'Inter', sans-serif;
}
.cookie-banner.show{ 
bottom: 0; 
}
.cookie-content{ 
max-width: 1200px; 
margin: 0 auto; 
display: flex; 
justify-content: space-between; 
align-items: center; 
gap: 20px; 
}
.cookie-content p{ 
font-size: 0.9rem; 
margin: 0; 
color: #e0e0e0; 
}
.cookie-content a{ 
color: #00a8e8; 
text-decoration: underline; 
}
.cookie-btns{ 
display: flex; 
gap: 10px; 
}
.btn-cookie-accept{ 
background-color: #0056b3; 
color: white; 
border: none; 
padding: 10px 20px; 
border-radius: 5px; 
cursor: pointer; 
font-weight: 600; 
transition: background-color 0.3s ease; 
}
.btn-cookie-accept:hover{ 
background-color: #00a8e8; 
}
.btn-cookie-reject{ 
background-color: transparent; 
border: 1px solid #666; 
color: #ccc; 
padding: 10px 20px; 
border-radius: 5px; 
cursor: pointer; 
transition: all 0.3s ease; 
}
.btn-cookie-reject:hover{ 
border-color: white; 
color: white; 
}
@media (max-width: 768px){
.cookie-content{ 
flex-direction: column; 
text-align: center; 
}
.cookie-btns{ 
width: 100%; 
justify-content: center; 
}
}
footer{
background: var(--navbar-bg);
color: var(--gray);
text-align: center;
padding: 40px 5%;
border-top: 1px solid var(--border-color);
}
.footer-social{
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
margin-bottom: 20px;
}
.footer-social a{
display: flex;
align-items: center;
justify-content: center;
width: 42px;
height: 42px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.05);
color: var(--gray);
transition: all 0.3s ease;
text-decoration: none;
}
.footer-social a:hover{
background: rgba(0, 168, 232, 0.15);
color: var(--accent);
transform: translateY(-3px);
}
.footer-social svg{
width: 22px;
height: 22px;
}
footer p{
color: var(--gray);
}
footer a{
color: var(--gray);
transition: color 0.3s ease;
}
footer a:hover{
color: var(--accent);
}
.calculator-main{
padding-top: 120px;
padding-bottom: 50px;
min-height: 100vh;
background-color: #0b0b0b;
display: flex;
justify-content: center;
}
.iframe-wrapper{
width: 100%;
max-width: 1000px;
margin: 0 auto;
background: #0b0b0b;
position: relative;
}
.calculator-frame{
width: 100%;
height: 1250px;
border: none;
display: block;
overflow: hidden;
background-color: #0b0b0b; 
}
.legal-header{
background-color: var(--navbar-bg);
padding: 120px 10% 60px;
color: white;
text-align: center;
}
.legal-content{
max-width: 900px;
margin: 0 auto;
padding: 60px 5%;
background: var(--card-bg);
color: var(--dark);
}
.legal-content h2{
color: var(--accent);
margin-top: 40px;
margin-bottom: 20px;
border-bottom: 2px solid var(--border-color);
padding-bottom: 10px;
font-size: 1.8rem;
}
.legal-content h3{ 
margin-top: 25px; 
margin-bottom: 10px; 
color: var(--dark); 
font-size: 1.2rem; 
}
.legal-content p, 
.legal-content ul, 
.legal-content li{ 
margin-bottom: 15px; 
line-height: 1.8;
color: var(--gray);
}
.legal-content ul{ 
padding-left: 20px; 
list-style: disc; 
}
.legal-content strong{
color: var(--dark);
}
.legal-box{
background: var(--highlight-bg);
padding: 25px;
border-left: 4px solid var(--accent);
margin: 20px 0;
font-size: 0.95rem;
border-radius: 4px;
}
.legal-box p{
color: var(--gray);
margin-bottom: 8px;
}
.legal-box strong{
color: var(--dark);
}
@media (max-width: 900px){
.navbar{ 
padding: 15px 5%; 
flex-direction: column; 
align-items: flex-start; 
min-height: auto;
gap: 10px;
}
.logo{ 
width: 100%;
margin-bottom: 5px;
}
.logo-img{ 
height: 50px; 
}
.nav-links{ 
width: 100%; 
display: flex; 
overflow-x: auto; 
white-space: nowrap; 
padding: 10px 0;
gap: 10px; 
-webkit-overflow-scrolling: touch; 
scrollbar-width: none;
justify-content: flex-start;
}
.nav-links::-webkit-scrollbar{ 
display: none; 
}
.nav-links li a{ 
margin: 0;
font-size: 0.9rem;
background: rgba(255,255,255,0.1);
padding: 8px 15px;
border-radius: 20px;
border: 1px solid rgba(255,255,255,0.05);
}
.nav-links li a.btn-nav{
background: var(--primary);
border: none;
color: white !important;
padding: 10px 20px;
font-weight: 600;
}
.navbar-right{
display: flex !important;
width: 100%;
justify-content: center;
align-items: center;
padding: 18px 0 14px 0;
margin-top: 10px;
border-top: 1px solid rgba(255,255,255,0.1);
}
.navbar-right .social-links{
display: flex !important;
justify-content: center;
align-items: center;
gap: 20px;
}
.navbar-right .social-links a{
display: flex !important;
align-items: center;
justify-content: center;
width: 46px;
height: 46px;
background: rgba(255, 255, 255, 0.06);
border: 1.5px solid rgba(255, 255, 255, 0.15);
border-radius: 50%;
color: rgba(255, 255, 255, 0.9);
transition: all 0.25s ease;
}
.navbar-right .social-links a:active{
transform: scale(0.92);
background: rgba(0, 168, 232, 0.18);
border-color: rgba(0, 168, 232, 0.4);
}
.navbar-right .social-links svg{
width: 23px;
height: 23px;
}
.hero, .about-hero{ 
min-height: 100vh; 
padding-top: 230px !important;
padding-bottom: 60px;
display: flex;
align-items: flex-start !important; 
justify-content: center;
}
.hero-content{
padding-top: 20px; 
}
.hero h1, .about-hero h1{ 
font-size: 2.5rem;
line-height: 1.2;
}
.hero-subtitle{
font-size: 0.95rem;
}
.hero p, .about-hero p{ 
font-size: 1.1rem;
padding: 0 10px; 
}
.hero-btns{
flex-direction: column;
align-items: center;
}
.btn-primary,
.btn-secondary{
width: 100%;
max-width: 300px;
}
.contact-container, 
.about-container{ 
grid-template-columns: 1fr; 
text-align: center; 
gap: 40px; 
}
.about-text{
text-align: left;
}
.section-title{ 
font-size: 2rem; 
}
.calculator-frame{
height: 1400px;
}
.calculator-main{
padding-top: 85px;
}
.whatsapp-float{
bottom: 20px;
right: 20px;
width: 55px;
height: 55px;
font-size: 26px;
}
.cookie-content{ 
flex-direction: column; 
text-align: center; 
}
.cookie-btns{ 
width: 100%; 
justify-content: center; 
}
.faq-grid{
grid-template-columns: 1fr;
}
.extras-grid{
grid-template-columns: 1fr;
}
.legal-header{ 
padding-top: 140px; 
}
.price-list li strong, 
.price-row td, 
.highlight-price{ 
white-space: nowrap; 
}
}
@media (max-width: 600px){
.hero h1, .about-hero h1{
font-size: 2rem;
}
.section-title{
font-size: 1.8rem;
}
.card{
padding: 30px;
}
}
@media (max-width: 768px){
.hero, .hero-section{ 
display: flex;
align-items: flex-start !important; 
padding-top: 250px !important; 
height: auto !important;
min-height: 85vh; 
padding-bottom: 60px !important;
}
}
.nav-links a,
.nav-links a[aria-current="page"]{
color: rgba(255,255,255,0.95);
}
.nav-links a.nav-active{
color: #00a8e8 !important;
font-weight: bold !important;
}
.about-text p, 
.section-title, 
.image-caption, 
footer p{
color: #f8f9fa !important;
}
.btn-nav, .btn-primary{
color: #ffffff !important;
font-weight: 700;
}

/* ===== ANIMACIONES SCROLL - Intersection Observer ===== */
.aos-elem {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}
.fade-in-elem  { transform: none; }
.fade-up-elem  { transform: translateY(40px); }
.zoom-in-elem  { transform: scale(0.85); }
.zoom-in-elem[data-delay="100"] { transition-delay: 0.1s; }
.zoom-in-elem[data-delay="200"] { transition-delay: 0.2s; }
.zoom-in-elem[data-delay="300"] { transition-delay: 0.3s; }
.aos-elem.is-visible {
    opacity: 1;
    transform: none;
}
/* Hover funciona una vez que la animación de entrada termina */
.card.aos-elem.is-visible:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.value-card.aos-elem.is-visible:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
@media (prefers-reduced-motion: reduce) {
    .aos-elem { opacity: 1; transform: none; transition: none; }
}
/* ===== FIN ANIMACIONES SCROLL ===== */
