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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
    --white: #ffffff;
    --gray: #6b7280;
}

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container2 {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
header {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.visor_logo {
    height: 40px;
    transition: transform 0.3s;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-color);
    border-radius: 6px;
    transition: background 0.2s;
}
.nav-toggle:hover { background: var(--light-bg); }

header .container {
    padding-left: 1rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero */
.hero {
    position: relative;
    min-height: 850px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,14,26,0.9) 0%, rgba(10,14,26,0.7) 50%, rgba(10,14,26,0.15) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 11rem 4rem 14rem;
    margin-left: 0;
}

.hero-inner {
    max-width: 672px;
}

.hero-headline {
    font-family: 'Inter', sans-serif;
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -1px;
}

.hero-highlight {
    color: #3b82f6;
    display: block;
}

.hero-divider {
    width: 6rem;
    height: 4px;
    background: #3b82f6;
    border-radius: 9999px;
    margin-top: 2rem;
}

.hero-sub {
    font-size: 1.5rem;
    color: #e5e7eb;
    line-height: 1.65;
    margin-top: 2.5rem;
    max-width: 560px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 2.5rem;
    background: #2563eb;
    color: #fff;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 10px 40px rgba(37,99,235,0.4);
}

.hero-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 14px 48px rgba(37,99,235,0.55);
}

.hero-stats-wrap {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1152px;
    z-index: 10;
}

.hero-stats-glass {
    background: rgba(10,14,26,0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    color: #fff;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.hero-stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    flex-shrink: 0;
}

.hero-stat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-num {
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: #d1d5db;
    line-height: 1.4;
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--secondary-color);
}

/* Pricing Plans Section */
.plans {
    padding: 80px 0;
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 1100px) {
    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-grid-4 {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--light-bg);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-card .subtitle {
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    flex-grow: 1;
}

.details-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

/* Services V2 */
.services-v2 {
    padding: 1rem 0;
    background: #fff;
}

.services-title {
    text-align: center;
}

.services-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.125rem;
}

.services-headline {
    margin-top: 1.25rem;
    font-size: 3.75rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
}

.services-highlight {
    color: #2563eb;
}

.services-sub {
    margin-top: 2rem;
    font-size: 1.5rem;
    color: #64748b;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.09);
}

.service-card-icon {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.service-card-title {
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
}

.service-card-divider {
    width: 3.5rem;
    height: 4px;
    background: #2563eb;
    border-radius: 9999px;
    margin: 1.75rem auto;
}

.service-card-desc {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

.description{
    font-size:22px;
    line-height:1.7;
    color:#475569;
    margin-bottom:40px;
}

.subtitle{
    color:#2563eb;
    font-weight:700;
    font-size:14px;
    letter-spacing:1px;
}

.about-text h2{
    font-size:58px;
    line-height:1.1;
    font-weight:800;
    color:#0f172a;
    margin:15px 0 25px;
}

.about-text h2 span{
    color:#2563eb;
}
/* Services CTA */
.services-cta {
    margin-top: 0rem;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.services-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.services-cta-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.services-cta-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.services-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.services-cta-sub {
    font-size: 1.1rem;
    color: #64748b;
    margin-top: 0.5rem;
    line-height: 1.6;
}

.services-cta-btn {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 1.25rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.25s, transform 0.2s;
    flex-shrink: 0;
}

.services-cta-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 5rem 0;
}

.flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
}

.about-image {
    flex: 2;
}

.placeholder-img {
    background: #e5e7eb;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--gray);
    font-weight: bold;
}
.imgaa {
    height: 500px;
    width: 800px;
    border-radius: 10px;
    object-fit: cover;
}   

/* Contact Section */
.contact-section {
    background: #f8fafc;
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.75rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #081b4b;
    margin-bottom: 1rem;
}

.section-header p {
    color: #56627a;
    font-size: 1.25rem;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 3rem;
    margin-bottom: 0.5rem;
}

.contact-info {
    padding-right: 2.5rem;
    border-right: 1px solid #e5e7eb;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #081b4b;
    margin-bottom: 1rem;
}

.contact-info .intro {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.75rem;
    align-items: flex-start;
}

.info-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #eef3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    flex-shrink: 0;
}

.info-item h4 {
    margin: 0 0 2px;
    color: #081b4b;
    font-size: 1rem;
    font-weight: 600;
}

.info-item span {
    color: #55627a;
    font-size: 0.95rem;
}

.contact-form-wrap input,
.contact-form-wrap textarea {
    width: 100%;
    padding: 1.1rem 1.25rem;
    border: 1px solid #dbe2ea;
    border-radius: 12px;
    margin-bottom: 1.1rem;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s;
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.privacy-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4b5563;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.privacy-check a {
    color: #2563eb;
}

.btn-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    padding: 1.1rem;
    border-radius: 12px;
    background: linear-gradient(90deg, #2563eb, #1d4eff);
    transition: opacity 0.2s, transform 0.2s;
}

.btn-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.contact-benefits {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
}

.contact-benefit {
    padding: 2rem;
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    border-right: 1px solid #edf0f4;
}

.contact-benefit:last-child {
    border-right: none;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-benefit h4 {
    margin: 0 0 6px;
    color: #081b4b;
    font-size: 1rem;
    font-weight: 600;
}

.contact-benefit p {
    margin: 0;
    color: #55627a;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--text-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle { display: flex; align-items: center; justify-content: center; }

    nav { position: relative; flex-wrap: wrap; }
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 0.5rem 1.5rem 1rem;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        z-index: 999;
        border-top: 1px solid #e5e7eb;
    }
    nav ul.open { display: flex; }
    nav ul li { margin-left: 0; padding: 0.6rem 0; border-bottom: 1px solid #f3f4f6; }
    nav ul li:last-child { border-bottom: none; }
    .visor_logo { height: 20px; padding-top: -50px; }   
    header { position: relative; }
    .ñee { display: none; }
    .hero { min-height: 680px; }
    .hero-content { padding: 5rem 1.5rem 18rem; }
    .hero-headline { font-size: 2.25rem; }
    .hero-sub { font-size: 1.1rem; }
    .hero-stats-wrap { bottom: 1.5rem; width: 96%; }
    .hero-stats-glass { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.25rem; }
    .hero-stat-num { font-size: 1.75rem; }
    .hero-stat-icon { width: 52px; height: 52px; font-size: 1.5rem; }

    .flex { flex-direction: column; gap: 2rem; }
    .placeholder-img { height: auto; }
    .placeholder-img img { width: 100% !important; height: 220px !important; }

    .services-headline { font-size: 2.25rem; }
    .services-sub { font-size: 1.15rem; }
    .services-grid { grid-template-columns: 1fr; margin-top: 3rem; }
    .services-cta-inner { flex-direction: column; align-items: flex-start; }
    .services-cta-left { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .services-cta-btn { width: 100%; text-align: center; margin-top: 1rem; }
    .about-text h2 { font-size: 1.8rem; }
    .section-header h2 { font-size: 2.25rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info { border-right: none; border-bottom: 1px solid #e5e7eb; padding-right: 0; padding-bottom: 2rem; }
    .contact-benefits { grid-template-columns: 1fr 1fr; }
    .contact-benefit { border-right: none; border-bottom: 1px solid #edf0f4; }

    .logo img { height: 36px !important; }
    .logo img:last-child { display: none; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 1.6rem; }
    .pricing-card { padding: 24px 20px; }
    .pricing-card .price { font-size: 2rem; }
    .container { padding: 0 1rem; }
}

/* ── Footer ───────────────────────────────────────────── */
.site-footer {
    background: #0a0e1a;
    color: #e5e7eb;
    font-family: 'Inter', sans-serif;
}
.footer-main {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
}
.footer-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.footer-tagline {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 1.5rem;
}
.footer-tacerca-link {
    display: inline-flex;
    align-items: center;
    opacity: 0.65;
    transition: opacity 0.2s;
}
.footer-tacerca-link:hover { opacity: 1; }
.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #6b7280;
    margin-bottom: 1.25rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: #3b82f6; }
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #d1d5db;
    line-height: 1.5;
}
.footer-contact-icon { flex-shrink: 0; font-size: 1rem; margin-top: 1px; }
.footer-bottom {
    padding: 1.5rem 0;
    background: #05070f;
}
.footer-copy {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-logos img:last-child { display: none; }
}
