﻿@charset "UTF-8";

@font-face {
    font-family: "GoogleSans";
    src: url("/fonts/Google_Sans/GoogleSans-VariableFont_GRAD,opsz,wght.ttf") format("truetype");t.ttf") format("truetype");
    font-style: italic;
}

:root {

    /* Brand */

    --primary: #2554C7;
    --primary-dark: #1B46B6;
    --primary-light: #EEF4FF;

    --accent: #F59E0B;

    /* Neutral */

    --surface: #FFFFFF;
    --surface-soft: #F8FAFC;

    --text: #0F172A;
    --text-light: #64748B;

    --border: #E2E8F0;

    /* Radius */

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;

    /* Shadows */

    --shadow-sm: 0 8px 24px rgba(0, 0, 0, .08);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, .10);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .15);

    --transition: .3s ease;

    --rgb-bg-dark: 37, 84, 199;
    --rgb-bg-light: 240, 248, 255;
}

/* ==========================
   RESET
========================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'GoogleSans';
    background: var(--surface);
    color: var(--text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
}

.display-2,
.display-4 {
    font-weight: 800;
    letter-spacing: -1px;
}

/* ==========================
   COLORS
========================== */

.bg-site {
    background: var(--primary);
}

.bg-site-dark {
    background: var(--primary-dark);
}

.bg-site-light {
    background: var(--primary-light);
}

.text-site {
    color: var(--primary);
}

.text-site-dark {
    color: var(--primary-dark);
}

.text-site-light {
    color: white;
}

/* ==========================
   NAVBAR
========================== */

#mainNav {

    background: rgba(255, 255, 255, .92);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom: 1px solid var(--border);

    transition: var(--transition);
}

.scrolled #mainNav {
    box-shadow: var(--shadow-sm);
}

.logo-site {
    width: 280px;
    height: auto;
}

@media(max-width:991px) {

    .logo-site {
        width: 180px;
    }

}

#barApp .nav-link {

    color: var(--text);

    font-weight: 600;

    padding: .75rem 1rem;

    border-radius: 10px;

    transition: var(--transition);
}

#barApp .nav-link:hover {

    background: var(--primary);

    color: white;
}

/* ==========================
   HERO
========================== */

.carousel-item {

    height: 100vh;

    min-height: 750px;

    position: relative;

    background-size: cover;
}

.carousel-item::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(15,23,42,.45),
            rgba(15,23,42,.35)
        );

    z-index: 1;
}

.carousel-caption {

    bottom: 16%;

    z-index: 2;

    max-width: 950px;

    margin: auto;
}

.carousel-caption h1 {

    font-size: clamp(3rem, 6vw, 5rem);

    font-weight: 800;

    text-shadow:
        0 8px 30px rgba(0,0,0,.35);
}

.carousel-caption h5 {

    max-width: 850px;

    margin: 0 auto;

    line-height: 1.8;

    font-size: 1.25rem;

    text-shadow:
        0 4px 20px rgba(0,0,0,.35);
}

.btn {

    border-radius: 14px;

    transition: var(--transition);

    font-weight: 600;
}

.btn:hover {
    transform: translateY(-2px);
}

/* ==========================
   NOSOTROS
========================== */

#nosotros .card {

    background: #fff;

    border: none;

    border-radius: 24px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);

    transition: .35s ease;

    height: 100%;
    overflow: hidden;
}

#nosotros .card-header {

    height: 120px;

    background: var(--primary-light);

    border: none;

    display: flex;

    align-items: center;

    justify-content: center;
}

#nosotros .card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .15);
}

#nosotros .card-body {

    padding: 2rem;
}

#nosotros h4 {

    margin-top: 1rem;

    margin-bottom: 1rem;

    font-weight: 700;
}

#nosotros h5 {
    line-height: 1.7;
    color: var(--text);
}

#nosotros ul {
    padding-left: 1.5rem;
    margin-top: 1rem;
}

#nosotros li {
    margin-bottom: .75rem;
}

#nosotros {
    background:
        linear-gradient(180deg,
            #f8fafc 0%,
            #eef4ff 100%);
}

.circle-icon {

    width: 100px;
    height: 100px;

    margin: auto;

    border-radius: 50%;

    background: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow:
        0 10px 30px rgba(37, 84, 199, .25);

    transform: translateY(50%);
}

.circle-icon i {

    color: #fff;

    font-size: 2.5rem;

    line-height: 1;
}

#nosotros .card:hover .circle-icon {

    transform:
        translateY(50%) scale(1.05);

    transition: .3s ease;
}

/* =====================================
   CONTACTO DIRECTO
===================================== */

#telefonos{

    padding:80px 0;
}

.contact-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:var(--shadow-lg);
}

.contact-title{

    background:var(--primary);

    color:#fff;

    padding:3rem;

    height:100%;
}

.contact-title h2{

    font-size:2.4rem;

    font-weight:800;

    margin-bottom:1rem;
}

.contact-title p{

    margin:0;

    opacity:.9;
}

.contact-numbers{

    padding:3rem;
}

.contact-item{

    display:flex;

    align-items:center;

    gap:1.5rem;

    margin-bottom:2rem;
}

.contact-item:last-child{

    margin-bottom:0;
}

.contact-item i{

    width:70px;
    height:70px;

    border-radius:50%;

    background:var(--primary-light);

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.5rem;
}

.contact-item span{

    display:block;

    font-size:.9rem;

    color:var(--text-light);

    margin-bottom:.25rem;
}

.contact-item a{

    text-decoration:none;

    font-size:1.4rem;

    font-weight:700;

    color:var(--text);
}

.contact-item a:hover{

    color:var(--primary);
}

/* =====================================
   LOGISTICA
===================================== */

.logistica-image{

    position:relative;

    padding:90px 0;

    background:
        linear-gradient(
            rgba(15,23,42,.82),
            rgba(15,23,42,.82)
        ),
        url('../images/tractos/tracto13.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.logistica-image h1{

    color:#fff;

    font-size:3.5rem;

    font-weight:800;

    margin-bottom:2rem;
}

.logistica-image h5{

    color:rgba(255,255,255,.92);

    line-height:1.8;

    font-weight:400;

    margin-bottom:2rem;
}

.logistica-image .btn {

    padding:14px 28px;

    border-radius:14px;

    font-weight:600;

    background:#ffffff;

    color:#0f172a;

    text-decoration:none;

    display:inline-block;
}

.logistica-image .btn:hover,
.logistica-image .btn:focus,
.logistica-image .btn:active,
.logistica-image .btn:visited {

    background:#ffffff;

    color:#0f172a;

    text-decoration:none;
}

#cobertura{
    padding-top:0;
}

/* =====================================
   COBERTURA
===================================== */

.coverage-card{

    background:#fff;

    border-radius:24px;

    padding:3rem;

    box-shadow:
        0 15px 40px rgba(15,23,42,.08);
}

.coverage-map{

    background:
        linear-gradient(
            135deg,
            rgba(var(--rgb-primary), .04),
            rgba(var(--rgb-primary), .08)
        );

    border-radius:20px;

    padding:1.5rem;
}

.coverage-map img{

    width:100%;

    border-radius:16px;

    display:block;
}

.coverage-badge{

    display:inline-flex;

    align-items:center;

    gap:.75rem;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(var(--rgb-primary), .10);

    color:var(--primary);

    font-weight:600;

    margin-bottom:1.5rem;
}

#cobertura ul{

    padding-left:0;
}

#cobertura li{

    list-style:none;

    display:flex;

    align-items:center;

    gap:.75rem;

    margin-bottom:.75rem;

    font-weight:500;
}

#cobertura li i{

    color:#22c55e;
}

#cobertura h5{

    color:#64748b;

    line-height:1.8;
}

#cobertura .display-2{
    padding-top:120px;
    /* margin-bottom:4rem !important; */
}

/* =====================================
   VIDEO SECTION
===================================== */

.video-banner{

    position:relative;

    min-height:650px;

    overflow:hidden;

    display:flex;

    align-items:center;

    justify-content:center;
}

.video-banner video{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;
}

.video-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            rgba(15,23,42,.75),
            rgba(15,23,42,.75)
        );
}

.video-content{

    position:relative;

    z-index:2;

    max-width:900px;

    text-align:center;

    padding:2rem;
}

.video-content h2{

    color:#fff;

    font-size:4rem;

    font-weight:800;

    line-height:1.2;

    margin:0;
}

.video-stats{

    margin-top:2rem;

    display:flex;

    justify-content:center;

    gap:1rem;

    flex-wrap:wrap;
}

.video-stats span{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    padding:12px 20px;

    border-radius:999px;

    color:#fff;

    font-weight:600;
}

.gallery-image{
    border-radius:20px;
    overflow:hidden;
    cursor:pointer;
}

.gallery-image img{
    transition:.4s;
}

.gallery-image:hover img{
    transform:scale(1.05);
}

.client-logo{
    max-width:180px;
    max-height:80px;
    object-fit:contain;
    filter:grayscale(100%);
    transition:.3s;
}

.client-logo:hover{
    filter:none;
    transform:scale(1.05);
}

/* ===========================
   FOOTER
=========================== */

.footer-modern{

    position:relative;

    padding-top:20px;
}

.footer-modern a{

    color:var(--primary-light);

    text-decoration:none;

    transition:.3s;
}

.footer-modern a:hover{

    color:#fff;
}

.footer-item{

    line-height:1.8;
}

.footer-divider{

    margin:40px 0;

    border:none;

    height:1px;

    background:rgba(255,255,255,.15);
}

.footer-social{

    width:48px;

    height:48px;

    border-radius:50%;

    background:var(--primary-light);

    color:var(--primary-dark);

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    transition:.3s;
}

.footer-social:hover{

    transform:translateY(-4px);

    color:var(--primary-dark);
}

.footer-modern{

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            #16388f
        );

    color:#fff;
}

.footer-social{

    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#eef4ff;

    color:#2554C7;

    font-size:1.25rem;

    text-decoration:none;

    transition:.3s;
}

.footer-social i{

    color:#2554C7;

    font-size:1.25rem;
}

.footer-social:hover{

    transform:translateY(-4px);

    background:#fff;
}

.back-to-top{

    position:fixed;

    bottom:30px;
    right:30px;

    z-index:999;

    width:56px;
    height:56px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:none;

    box-shadow:0 10px 25px rgba(0,0,0,.25);
}