Preview de mixed.css
/* MIXED CSS PACK */
/* Template: dymturismo.com.ar/index.html */
/* Template mtime: 2026-04-13 17:19:01 */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* ===== INLINE <style> BLOCK #1 ===== */
:root {
--accent: #fe6e00;
--accent-dark: #003d77;
--accent-light: #e8f2fc;
--accent-glow: rgba(0, 86, 167, 0.15);
--text: #111111;
--text-dark: #0a0d12;
--muted: #5b6570;
--muted-light: #8892a0;
--line: #e8edf3;
--soft: #f6f9fc;
--white: #ffffff;
--shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
--shadow: 0 18px 48px rgba(0,0,0,0.08);
--shadow-lg: 0 32px 64px rgba(0,0,0,0.12);
--shadow-accent: 0 20px 50px rgba(0,86,167,0.18);
--radius: 24px;
--radius-sm: 16px;
--radius-xs: 12px;
--nav-h: 84px;
--transition: cubic-bezier(0.4, 0, 0.2, 1);
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
max-width: 100%;
overflow-x: clip;
}
body {
margin: 0;
font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
background: var(--white);
color: var(--text);
max-width: 100%;
overflow-x: clip;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
img {
max-width: 100%;
display: block;
}
a {
text-decoration: none;
transition: all 0.3s var(--transition);
}
/* Container */
.container-custom {
width: min(1220px, calc(100% - 48px));
margin-inline: auto;
}
/* Section base */
.section {
padding: 120px 0;
position: relative;
}
/* Eyebrow badge */
.eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 20px;
border-radius: 100px;
background: linear-gradient(135deg, var(--accent-light) 0%, rgba(0,86,167,0.08) 100%);
color: var(--accent);
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
border: 1px solid rgba(0,86,167,0.12);
backdrop-filter: blur(8px);
}
.eyebrow::before {
content: "";
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--accent);
animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.5; transform: scale(0.8); }
}
/* Section titles */
.section-title {
font-family: 'Outfit', sans-serif;
font-size: clamp(2.2rem, 4.5vw, 3.2rem);
line-height: 1.1;
font-weight: 800;
letter-spacing: -0.03em;
margin: 20px 0 16px;
color: var(--text-dark);
background: linear-gradient(135deg, var(--text-dark) 0%, #2d3748 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.section-subtitle {
max-width: 680px;
margin: 0 auto;
color: var(--muted);
line-height: 1.8;
font-size: 1.1rem;
font-weight: 400;
}
/* ========== NAVBAR ========== */
.navbar {
background: rgba(255,255,255,0.85);
backdrop-filter: blur(20px) saturate(180%);
-webkit-backdrop-filter: blur(20px) saturate(180%);
border-bottom: 1px solid rgba(0,0,0,0.04);
padding: 0;
min-height: var(--nav-h);
display: flex;
align-items: center;
transition: all 0.4s var(--transition);
}
.navbar.scrolled {
background: rgba(255,255,255,0.95);
box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.navbar .container-custom {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
min-height: var(--nav-h);
position: relative;
overflow: visible;
}
.navbar-brand {
display: flex;
align-items: center;
gap: 14px;
color: var(--text-dark) !important;
font-family: 'Outfit', sans-serif;
font-size: 1.05rem;
font-weight: 700;
letter-spacing: -0.02em;
margin: 0;
padding: 0;
min-width: 0;
flex: 1 1 auto;
}
.navbar-brand span {
display: block;
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.brand-logo {
height: 44px;
width: auto;
transition: transform 0.3s var(--transition);
}
.navbar-brand:hover .brand-logo {
transform: scale(1.05);
}
.navbar-collapse {
flex-grow: 0;
min-width: 0;
}
.navbar-nav {
align-items: center;
gap: 6px;
}
.nav-link {
color: var(--text) !important;
font-weight: 600;
font-size: 0.92rem;
padding: 10px 18px !important;
border-radius: 100px;
position: relative;
transition: all 0.3s var(--transition);
}
.nav-link::after {
content: "";
position: absolute;
bottom: 6px;
left: 50%;
width: 0;
height: 2px;
background: var(--accent);
border-radius: 2px;
transition: all 0.3s var(--transition);
transform: translateX(-50%);
}
.nav-link:hover,
.nav-link.active {
color: var(--accent) !important;
}
.nav-link:hover::after,
.nav-link.active::after {
width: 24px;
}
.navbar-toggler {
border: 1px solid var(--line);
border-radius: var(--radius-xs);
padding: 10px 14px;
box-shadow: none !important;
transition: all 0.3s var(--transition);
margin-left: auto;
flex: 0 0 auto;
background: var(--white);
}
.navbar-toggler-icon {
width: 1.25rem;
height: 1.25rem;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(17,17,17,0.88)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler:hover {
background: var(--soft);
border-color: var(--accent-light);
}
/* ========== HERO ========== */
.hero {
padding: calc(var(--nav-h) + 80px) 0 100px;
background:
radial-gradient(ellipse 80% 60% at 100% 0%, rgba(0,86,167,0.08) 0%, transparent 50%),
radial-gradient(ellipse 60% 50% at 0% 100%, rgba(0,86,167,0.05) 0%, transparent 50%),
linear-gradient(180deg, var(--white) 0%, var(--soft) 100%);
position: relative;
overflow: hidden;
}
.hero::before {
content: "";
position: absolute;
top: 20%;
right: -10%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(0,86,167,0.06) 0%, transparent 70%);
border-radius: 50%;
pointer-events: none;
animation: float-slow 20s ease-in-out infinite;
}
@keyframes float-slow {
0%, 100% { transform: translate(0, 0) scale(1); }
50% { transform: translate(-30px, 30px) scale(1.05); }
}
.hero-grid {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 60px;
align-items: center;
}
.hero-copy {
animation: fadeInUp 0.8s var(--transition) both;
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
.hero-title {
font-family: 'Outfit', sans-serif;
font-size: clamp(3rem, 6vw, 4.5rem);
line-height: 1;
font-weight: 800;
letter-spacing: -0.04em;
margin: 24px 0;
color: var(--text-dark);
}
.hero-title span {
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
position: relative;
}
.hero-lead {
color: var(--muted);
font-size: 1.15rem;
line-height: 1.8;
max-width: 540px;
margin-bottom: 32px;
}
.hero-points {
list-style: none;
padding: 0;
margin: 0 0 36px;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 14px;
}
.hero-points li {
display: flex;
align-items: center;
gap: 14px;
padding: 18px 20px;
background: var(--white);
border: 1px solid var(--line);
border-radius: var(--radius-sm);
font-weight: 600;
font-size: 0.95rem;
color: var(--text-dark);
box-shadow: var(--shadow-sm);
transition: all 0.3s var(--transition);
}
.hero-points li:hover {
transform: translateY(-2px);
box-shadow: var(--shadow);
border-color: rgba(0,86,167,0.2);
}
.hero-points li::before {
content: "";
width: 10px;
height: 10px;
border-radius: 50%;
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
flex-shrink: 0;
box-shadow: 0 0 0 4px var(--accent-light);
}
.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 16px;
}
/* Buttons */
.btn-main {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
min-height: 56px;
padding: 0 32px;
border-radius: 100px;
font-weight: 700;
font-size: 0.95rem;
transition: all 0.4s var(--transition);
border: 2px solid transparent;
cursor: pointer;
position: relative;
overflow: hidden;
}
.btn-main-primary {
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
color: var(--white);
box-shadow: var(--shadow-accent);
}
.btn-main-primary::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
opacity: 0;
transition: opacity 0.4s var(--transition);
}
.btn-main-primary:hover {
transform: translateY(-3px);
box-shadow: 0 28px 60px rgba(0,86,167,0.28);
color: var(--white);
}
.btn-main-primary:hover::before {
opacity: 1;
}
.btn-main-primary span {
position: relative;
z-index: 1;
}
.btn-main-outline {
background: var(--white);
color: var(--text-dark);
border-color: var(--line);
box-shadow: var(--shadow-sm);
}
.btn-main-outline:hover {
color: var(--accent);
border-color: var(--accent);
background: var(--accent-light);
transform: translateY(-3px);
box-shadow: var(--shadow);
}
/* Hero media */
.hero-media {
position: relative;
animation: fadeInUp 0.8s var(--transition) 0.2s both;
}
.hero-card {
background: var(--white);
border: 1px solid rgba(0,0,0,0.06);
box-shadow: var(--shadow-lg);
border-radius: 32px;
padding: 16px;
position: relative;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.hero-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 50%;
background: linear-gradient(180deg, rgba(0,86,167,0.04) 0%, transparent 100%);
pointer-events: none;
}
.hero-card::after {
content: "";
position: absolute;
inset: 0;
border-radius: 32px;
padding: 1px;
background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(0,86,167,0.1));
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
pointer-events: none;
}
.hero-image {
width: 100%;
height: auto;
max-height: 520px;
aspect-ratio: auto;
object-fit: contain;
object-position: center;
border-radius: 24px;
position: relative;
z-index: 1;
background: transparent;
}
.hero-float {
position: absolute;
right: -10px;
bottom: -10px; /* ↓ más abajo */
background: var(--white);
border: 1px solid var(--line);
border-radius: 14px;
padding: 12px 14px;
box-shadow: var(--shadow-lg);
max-width: 200px;
z-index: 3;
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-6px); }
}
.hero-float::before {
content: "";
position: absolute;
top: -6px;
left: 18px;
width: 12px;
height: 12px;
background: var(--white);
border-top: 1px solid var(--line);
border-left: 1px solid var(--line);
transform: rotate(45deg);
}
.hero-float strong {
display: flex;
align-items: center;
gap: 6px;
color: var(--text-dark);
font-size: 0.85rem;
font-weight: 700;
margin-bottom: 6px;
}
.hero-float strong::before {
content: "✓";
width: 16px;
height: 16px;
display: flex;
align-items: center;
justify-content: center;
background: var(--accent);
color: var(--white);
font-size: 0.6rem;
font-weight: 800;
border-radius: 50%;
}
.hero-float span {
display: block;
color: var(--muted);
line-height: 1.4;
font-size: 0.8rem;
}
/* ========== ABOUT / QUIENES SOMOS ========== */
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 28px;
}
.panel {
background: var(--white);
border: 1px solid var(--line);
border-radius: var(--radius);
padding: 40px;
box-shadow: var(--shadow-sm);
height: 100%;
transition: all 0.4s var(--transition);
position: relative;
overflow: hidden;
}
.panel::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
opacity: 0;
transition: opacity 0.4s var(--transition);
}
.panel:hover {
transform: translateY(-4px);
box-shadow: var(--shadow);
border-color: rgba(0,86,167,0.15);
}
.panel:hover::before {
opacity: 1;
}
.panel p {
margin: 0 0 20px;
color: var(--muted);
line-height: 1.85;
font-size: 1.02rem;
}
.panel h3 {
font-family: 'Outfit', sans-serif;
margin: 20px 0 14px;
font-size: 1.5rem;
font-weight: 800;
letter-spacing: -0.02em;
color: var(--text-dark);
}
.fleet-list {
list-style: none;
padding: 0;
margin: 24px 0 0;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}
.fleet-list li {
display: flex;
align-items: center;
gap: 12px;
padding: 16px 18px;
border-radius: var(--radius-sm);
background: linear-gradient(135deg, var(--soft) 0%, var(--white) 100%);
border: 1px solid var(--line);
color: var(--text-dark);
font-weight: 600;
font-size: 0.95rem;
transition: all 0.3s var(--transition);
}
.fleet-list li:hover {
background: var(--accent-light);
border-color: rgba(0,86,167,0.2);
transform: translateX(4px);
}
.fleet-list li::before {
content: "✓";
width: 22px;
height: 22px;
display: flex;
align-items: center;
justify-content: center;
background: var(--accent);
color: var(--white);
font-size: 0.65rem;
font-weight: 800;
border-radius: 50%;
flex-shrink: 0;
}
/* ========== SERVICES ========== */
.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 50px;
}
.service-card,
.reason-card {
background: var(--white);
border: 1px solid var(--line);
border-radius: var(--radius);
padding: 32px;
box-shadow: var(--shadow-sm);
height: 100%;
transition: all 0.4s var(--transition);
position: relative;
overflow: hidden;
}
.service-card::before,
.reason-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(0,86,167,0.02) 0%, transparent 50%);
opacity: 0;
transition: opacity 0.4s var(--transition);
}
.service-card:hover,
.reason-card:hover {
transform: translateY(-6px);
box-shadow: var(--shadow);
border-color: rgba(0,86,167,0.15);
}
.service-card:hover::before,
.reason-card:hover::before {
opacity: 1;
}
.card-icon {
width: 64px;
height: 64px;
display: flex;
align-items: center;
justify-content: center;
border-radius: var(--radius-sm);
background: linear-gradient(135deg, var(--accent-light) 0%, rgba(0,86,167,0.08) 100%);
color: var(--accent);
margin-bottom: 24px;
position: relative;
transition: all 0.4s var(--transition);
}
.service-card:hover .card-icon,
.reason-card:hover .card-icon {
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
color: var(--white);
transform: scale(1.05);
}
.card-icon svg {
width: 28px;
height: 28px;
stroke: currentColor;
stroke-width: 2;
fill: none;
stroke-linecap: round;
stroke-linejoin: round;
transition: all 0.4s var(--transition);
}
.service-card h3,
.reason-card h3 {
font-family: 'Outfit', sans-serif;
margin: 0 0 12px;
font-size: 1.2rem;
font-weight: 700;
color: var(--text-dark);
letter-spacing: -0.01em;
position: relative;
}
.service-card p,
.reason-card p {
margin: 0;
color: var(--muted);
line-height: 1.75;
font-size: 0.95rem;
position: relative;
}
/* ========== REASONS ========== */
.reasons-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 50px;
}
/* ========== GALLERY (sin cambios) ========== */
.gal-gallery .carousel {
max-width: 980px;
margin-inline: auto;
position: relative;
}
.gal-frame {
height: clamp(250px, 56vh, 500px);
background: #fff;
border-radius: 24px;
overflow: hidden;
box-shadow: 0 20px 45px rgba(0,0,0,.10);
display: flex;
align-items: center;
justify-content: center;
padding: 10px;
border: 1px solid var(--line);
}
.gal-img {
width: auto !important;
max-width: 100%;
height: auto !important;
max-height: 100%;
object-fit: contain !important;
object-position: center;
display: block;
cursor: zoom-in;
border-radius: 16px;
}
.gal-gallery .carousel-control-prev,
.gal-gallery .carousel-control-next {
z-index: 20;
width: 54px;
height: 54px;
top: 50%;
transform: translateY(-50%);
opacity: 1;
background: rgba(0,0,0,.55);
border-radius: 50%;
margin: 0 12px;
}
.gal-gallery .carousel-control-prev { left: 0 }
.gal-gallery .carousel-control-next { right: 0 }
.gal-gallery .gal-ctrl-icon {
width: 2.6rem;
height: 2.6rem;
background-size: 58% 58%;
}
.gal-gallery .carousel-indicators {
z-index: 10;
bottom: -54px;
}
.gal-gallery .carousel-indicators button {
width: 10px;
height: 10px;
border-radius: 50%;
background: rgba(0,0,0,.42);
border: none;
}
.gal-gallery .carousel-indicators button.active {
background: var(--accent);
}
.gal-gallery {
padding-bottom: 62px;
}
#galLightbox .modal-content {
background: #000;
border: none;
}
#galLightboxImg {
max-height: 86vh;
width: 100%;
height: auto;
object-fit: contain;
background: #000;
}
.gal-lightbox-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
border: 0;
width: 46px;
height: 46px;
border-radius: 999px;
background: rgba(255,255,255,.18);
color: #fff;
font-size: 30px;
line-height: 46px;
text-align: center;
z-index: 5;
cursor: pointer;
}
.gal-lightbox-nav:hover {
background: rgba(255,255,255,.28);
}
.gal-lightbox-nav.gal-prev { left: 12px }
.gal-lightbox-nav.gal-next { right: 12px }
/* ========== FAQs ========== */
#faqs {
background: var(--soft);
}
.faq-wrap {
max-width: 860px;
margin: 50px auto 0;
}
.faq-item {
border: 1px solid var(--line);
border-radius: var(--radius);
background: var(--white);
box-shadow: var(--shadow-sm);
overflow: hidden;
transition: all 0.3s var(--transition);
}
.faq-item:hover {
box-shadow: var(--shadow);
border-color: rgba(0,86,167,0.15);
}
.faq-item + .faq-item {
margin-top: 16px;
}
.accordion-button {
padding: 26px 32px;
font-family: 'Outfit', sans-serif;
font-size: 1.08rem;
font-weight: 700;
color: var(--text-dark);
box-shadow: none !important;
background: var(--white);
transition: all 0.3s var(--transition);
}
.accordion-button:not(.collapsed) {
color: var(--accent);
background: linear-gradient(135deg, var(--accent-light) 0%, rgba(0,86,167,0.04) 100%);
}
.accordion-button::after {
width: 24px;
height: 24px;
background-size: 16px;
border-radius: 50%;
background-color: var(--soft);
transition: all 0.3s var(--transition);
}
.accordion-button:not(.collapsed)::after {
background-color: var(--accent-light);
}
.accordion-body {
padding: 0 32px 28px;
color: var(--muted);
line-height: 1.85;
font-size: 1rem;
}
/* ========== CONTACT ========== */
#contacto {
background:
radial-gradient(circle at top right, rgba(0,86,167,0.06), transparent 34%),
linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.contact-grid {
display: grid;
grid-template-columns: 0.92fr 1.08fr;
gap: 32px;
margin-top: 50px;
align-items: start;
}
.contact-card,
.form-card {
background: var(--white);
border: 1px solid var(--line);
border-radius: 28px;
padding: 40px;
box-shadow: var(--shadow-sm);
height: 100%;
transition: all 0.4s var(--transition);
position: relative;
overflow: hidden;
}
.contact-card::before,
.form-card::before {
content: "";
position: absolute;
inset: 0 0 auto 0;
height: 5px;
background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
opacity: .95;
}
.contact-card:hover,
.form-card:hover {
box-shadow: var(--shadow);
transform: translateY(-3px);
}
.contact-card h3,
.form-card h3 {
font-family: 'Outfit', sans-serif;
margin: 0 0 12px;
font-size: 1.7rem;
font-weight: 800;
letter-spacing: -0.03em;
color: var(--text-dark);
}
.contact-card p,
.form-card p {
margin: 0;
color: var(--muted);
line-height: 1.8;
}
.contact-highlight {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 14px;
margin: 28px 0 24px;
}
.contact-highlight-item {
padding: 16px 18px;
border-radius: 18px;
background: linear-gradient(135deg, var(--accent-light) 0%, #ffffff 100%);
border: 1px solid rgba(0,86,167,0.12);
box-shadow: 0 10px 24px rgba(0,86,167,0.06);
}
.contact-highlight-label {
display: block;
font-size: 0.76rem;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 6px;
}
.contact-highlight-value {
display: block;
color: var(--text-dark);
font-weight: 700;
line-height: 1.45;
}
.contact-card-head {
margin-bottom: 8px;
}
.contact-list {
list-style: none;
padding: 0;
margin: 0;
display: grid;
gap: 14px;
}
.contact-list li {
display: flex;
align-items: flex-start;
gap: 16px;
padding: 18px 20px;
border-radius: 20px;
background: linear-gradient(135deg, var(--soft) 0%, var(--white) 100%);
border: 1px solid var(--line);
transition: all 0.3s var(--transition);
}
.contact-list li:hover {
background: var(--accent-light);
border-color: rgba(0,86,167,0.2);
transform: translateX(4px);
}
.contact-bullet {
width: 46px;
height: 46px;
min-width: 46px;
border-radius: 16px;
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 14px 30px rgba(0,86,167,0.18);
position: relative;
margin-top: 2px;
}
.contact-bullet::before {
content: "";
width: 12px;
height: 12px;
border-radius: 50%;
background: rgba(255,255,255,0.95);
box-shadow: 0 0 0 6px rgba(255,255,255,0.16);
}
.contact-list strong {
display: block;
margin-bottom: 5px;
color: var(--text-dark);
font-size: 0.82rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.08em;
}
.contact-list span,
.contact-list a {
color: var(--muted);
line-height: 1.65;
font-size: 1rem;
word-break: break-word;
transition: color 0.3s var(--transition);
}
.contact-list a:hover {
color: var(--accent);
}
.contact-note {
margin-top: 18px;
padding: 16px 18px;
border-radius: 18px;
background: #f9fbfe;
border: 1px dashed rgba(0,86,167,0.22);
color: var(--muted);
font-size: 0.95rem;
line-height: 1.75;
}
.contact-form-top {
margin-bottom: 24px;
padding-bottom: 22px;
border-bottom: 1px solid var(--line);
}
.form-block + .form-block {
margin-top: 26px;
padding-top: 24px;
border-top: 1px solid var(--line);
}
.form-block-title {
display: flex;
align-items: center;
gap: 10px;
margin: 0 0 6px;
font-family: 'Outfit', sans-serif;
font-size: 1.08rem;
font-weight: 800;
color: var(--text-dark);
letter-spacing: -0.02em;
}
.form-block-title::before {
content: "";
width: 10px;
height: 10px;
border-radius: 50%;
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
box-shadow: 0 0 0 6px rgba(0,86,167,0.10);
flex-shrink: 0;
}
.form-block-text {
margin: 0 0 18px;
color: var(--muted);
font-size: 0.98rem;
line-height: 1.75;
}
.form-label {
font-weight: 800;
color: var(--text-dark);
margin-bottom: 10px;
font-size: 0.78rem;
text-transform: uppercase;
letter-spacing: 0.08em;
}
.form-control,
.form-select {
min-height: 58px;
border-radius: 18px;
border: 2px solid var(--line);
padding: 14px 18px;
font-size: 1rem;
color: var(--text-dark);
background: #fbfdff;
box-shadow: none !important;
transition: all 0.3s var(--transition);
}
.form-control:hover,
.form-select:hover {
border-color: rgba(0,86,167,0.18);
background: #ffffff;
}
.form-control:focus,
.form-select:focus {
border-color: var(--accent);
background: var(--white);
box-shadow: 0 0 0 5px rgba(0,86,167,0.10) !important;
}
.form-control::placeholder {
color: var(--muted-light);
}
textarea.form-control {
min-height: 152px;
resize: vertical;
}
.contact-submit-wrap {
margin-top: 10px;
padding-top: 6px;
}
.contact-submit-wrap .btn-main {
min-height: 60px;
font-size: 1rem;
}
/* ========== FOOTER ========== */
.footer {
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
color: var(--white);
padding: 80px 0 32px;
position: relative;
overflow: hidden;
}
.footer::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
pointer-events: none;
}
.footer-grid {
display: grid;
grid-template-columns: 1.2fr 0.8fr 1fr;
gap: 40px;
position: relative;
}
.footer-brand {
display: flex;
align-items: center;
gap: 14px;
margin-bottom: 20px;
}
.footer-logo {
height: 44px;
width: auto;
filter: brightness(0) invert(1);
}
.footer-brand span {
font-family: 'Outfit', sans-serif;
font-size: 1.1rem;
font-weight: 700;
color: var(--white);
}
.footer h4 {
font-family: 'Outfit', sans-serif;
margin: 0 0 20px;
font-size: 1rem;
font-weight: 700;
color: var(--white);
text-transform: uppercase;
letter-spacing: 0.08em;
}
.footer p {
color: rgba(255,255,255,0.8);
line-height: 1.8;
font-size: 0.98rem;
}
.footer-links,
.footer-contact {
list-style: none;
padding: 0;
margin: 0;
display: grid;
gap: 12px;
}
.footer a,
.footer li {
color: rgba(255,255,255,0.8);
line-height: 1.7;
transition: all 0.3s var(--transition);
}
.footer a:hover {
color: var(--white);
transform: translateX(4px);
}
.footer-bottom {
margin-top: 50px;
padding-top: 24px;
border-top: 1px solid rgba(255,255,255,0.15);
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
gap: 16px;
font-size: 0.9rem;
color: rgba(255,255,255,0.7);
position: relative;
}
.footer-bottom a {
color: var(--white);
font-weight: 600;
}
.footer-bottom a:hover {
text-decoration: underline;
}
/* ========== RESPONSIVE ========== */
@media (max-width: 1199.98px) {
.services-grid,
.reasons-grid {
grid-template-columns: repeat(2, 1fr);
}
.about-grid,
.contact-grid {
grid-template-columns: 1fr;
}
.footer-grid {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 991.98px) {
:root {
--nav-h: 76px;
}
.section {
padding: 90px 0;
}
.hero-grid {
grid-template-columns: 1fr;
gap: 40px;
}
.hero-copy {
order: 1;
text-align: center;
}
.hero-copy .eyebrow {
justify-content: center;
}
.hero-lead {
margin-inline: auto;
}
.hero-points {
max-width: 500px;
margin-inline: auto;
}
.hero-actions {
justify-content: center;
}
.hero-media {
order: 2;
max-width: 500px;
margin-inline: auto;
}
.navbar .container-custom {
gap: 12px;
flex-wrap: nowrap;
}
.navbar-brand {
max-width: calc(100% - 76px);
}
.navbar-collapse {
position: absolute;
top: calc(100% + 10px);
left: 0;
right: 0;
margin-top: 0;
padding: 16px;
border: 1px solid var(--line);
border-radius: var(--radius);
background: var(--white);
width: auto;
box-shadow: var(--shadow);
z-index: 1050;
}
.navbar-collapse:not(.show) {
display: none !important;
}
.navbar-nav {
align-items: stretch;
gap: 4px;
width: 100%;
}
.nav-link {
padding: 14px 18px !important;
border-radius: var(--radius-xs);
width: 100%;
}
.nav-link:hover {
background: var(--soft);
}
.nav-link::after {
display: none;
}
}
@media (max-width: 767.98px) {
.section {
padding: 70px 0;
}
.hero-points,
.fleet-list,
.services-grid,
.reasons-grid,
.footer-grid {
grid-template-columns: 1fr;
}
.hero-actions {
flex-direction: column;
align-items: stretch;
}
.btn-main {
width: 100%;
}
.hero-float {
position: static;
max-width: none;
margin-top: 20px;
}
.hero-float::before {
display: none;
}
.panel,
.contact-card,
.form-card {
padding: 28px;
}
.contact-highlight {
grid-template-columns: 1fr;
}
.section-title {
font-size: clamp(1.8rem, 6vw, 2.4rem);
}
}
.hero-media-mobile {
display: none;
}
@media (max-width: 575.98px) {
.container-custom {
width: min(100% - 32px, 1220px);
}
.navbar-brand {
font-size: 0.9rem;
max-width: calc(100% - 70px);
}
.brand-logo,
.footer-logo {
height: 38px;
}
.hero {
padding: calc(var(--nav-h) + 50px) 0 70px;
}
.hero-copy {
display: flex;
flex-direction: column;
}
.hero-lead {
font-size: 1rem;
margin-bottom: 0;
}
.hero-media {
display: none;
}
.hero-media-mobile {
display: block;
order: 4;
width: 100%;
max-width: 380px;
margin: 22px auto 0;
}
.hero-media-mobile .hero-card {
padding: 10px;
border-radius: 26px;
}
.hero-media-mobile .hero-image {
display: block;
width: 100%;
height: auto;
max-height: 320px;
aspect-ratio: auto;
border-radius: 18px;
object-fit: contain;
object-position: center;
background: transparent;
}
.hero-actions {
order: 5;
margin-top: 20px;
}
.hero-points {
order: 6;
margin: 18px 0 0;
}
.hero-title {
font-size: clamp(2.2rem, 10vw, 3rem);
}
.gal-frame {
height: clamp(220px, 42vh, 360px);
}
.gal-gallery .carousel-control-prev,
.gal-gallery .carousel-control-next {
width: 46px;
height: 46px;
margin: 0 8px;
}
.accordion-button {
padding: 20px 24px;
font-size: 1rem;
}
.accordion-body {
padding: 0 24px 24px;
}
.contact-card,
.form-card {
border-radius: 24px;
}
.contact-list li {
padding: 16px;
}
.contact-bullet {
width: 40px;
height: 40px;
min-width: 40px;
border-radius: 14px;
}
}
/* Scroll animations */
.animate-on-scroll {
opacity: 0;
transform: translateY(30px);
transition: all 0.8s var(--transition);
}
.animate-on-scroll.visible {
opacity: 1;
transform: translateY(0);
}
/* Stagger children */
.stagger-children > * {
opacity: 0;
transform: translateY(20px);
transition: all 0.6s var(--transition);
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-children.visible > * {
opacity: 1;
transform: translateY(0);
}
/* ===== INLINE <style> BLOCK #2 ===== */
.gallery-ticker-wrap{
position: relative;
overflow: hidden;
margin: 0 0 40px;
padding: 8px 0;
}
.gallery-ticker-wrap .ticker-wrapper{
overflow: hidden;
}
.gallery-ticker-wrap .ticker-track{
display: flex;
gap: 30px;
width: max-content;
animation: galleryTickerMove 50s linear infinite;
}
.gallery-ticker-wrap .ticker-track:hover{
animation-play-state: paused;
}
.gallery-ticker-wrap img{
height: 380px;
width: 260px;
object-fit: cover;
border-radius: 16px;
cursor: pointer;
transition: transform .3s ease;
}
.gallery-ticker-wrap img:hover{
transform: scale(1.05);
}
@keyframes galleryTickerMove{
0%{ transform: translateX(0); }
100%{ transform: translateX(-50%); }
}
@media (max-width:768px){
.gallery-ticker-wrap img{
height: 220px;
width: 150px;
}
}
/* ===== INLINE <style> BLOCK #3 ===== */
/* =========================
POR QUÉ ELEGIRNOS
========================= */
#porque-elegirnos .why-head{
max-width: 760px;
margin: 0 auto 42px;
}
#porque-elegirnos .why-layout{
display:grid;
grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);
gap:32px;
align-items:stretch;
}
#porque-elegirnos .why-cards{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:16px;
align-content:start;
}
#porque-elegirnos .reason-card{
background:#fff;
border:1px solid var(--line);
border-radius:22px;
padding:20px 18px;
box-shadow:0 12px 28px rgba(0,0,0,.045);
transition:.25s ease;
height:100%;
}
#porque-elegirnos .reason-card:hover{
transform:translateY(-3px);
box-shadow:0 18px 36px rgba(0,0,0,.08);
}
#porque-elegirnos .reason-card .card-icon{
width:52px;
height:52px;
display:grid;
place-items:center;
border-radius:16px;
background:rgba(0,86,167,.10);
color:var(--accent);
margin-bottom:14px;
flex:0 0 auto;
}
#porque-elegirnos .reason-card .card-icon svg{
width:24px;
height:24px;
stroke:currentColor;
stroke-width:2;
fill:none;
stroke-linecap:round;
stroke-linejoin:round;
}
#porque-elegirnos .reason-card h3{
margin:0 0 8px;
font-size:1rem;
line-height:1.25;
font-weight:800;
letter-spacing:-.02em;
color:#101923;
}
#porque-elegirnos .reason-card p{
margin:0;
color:var(--muted);
line-height:1.7;
font-size:.94rem;
}
#porque-elegirnos .why-media{
position:relative;
min-height:100%;
}
#porque-elegirnos .why-media-frame{
position:relative;
height:100%;
min-height:560px;
border-radius:30px;
overflow:hidden;
border:1px solid var(--line);
box-shadow:0 22px 48px rgba(0,0,0,.10);
background:#eef5fc;
}
#porque-elegirnos .why-media-frame::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.18) 100%);
pointer-events:none;
}
#porque-elegirnos .why-media-frame img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}
#porque-elegirnos .why-media-badge{
position:absolute;
left:20px;
right:20px;
bottom:20px;
z-index:2;
background:rgba(255,255,255,.92);
backdrop-filter:blur(10px);
-webkit-backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,.75);
border-radius:20px;
padding:16px 18px;
box-shadow:0 12px 30px rgba(0,0,0,.12);
}
#porque-elegirnos .why-media-badge strong{
display:block;
margin-bottom:4px;
color:#101923;
font-size:1rem;
font-weight:800;
}
#porque-elegirnos .why-media-badge span{
display:block;
color:#4f5a66;
line-height:1.6;
font-size:.94rem;
}
@media (max-width: 991.98px){
#porque-elegirnos .why-layout{
grid-template-columns:1fr;
}
#porque-elegirnos .why-cards{
order:1;
}
#porque-elegirnos .why-media{
order:2;
}
#porque-elegirnos .why-media-frame{
min-height:420px;
}
}
@media (max-width: 575.98px){
#porque-elegirnos .why-head{
margin-bottom:30px;
}
#porque-elegirnos .why-cards{
grid-template-columns:1fr;
gap:14px;
}
#porque-elegirnos .reason-card{
padding:18px 16px;
border-radius:20px;
}
#porque-elegirnos .why-media-frame{
min-height:320px;
border-radius:24px;
}
#porque-elegirnos .why-media-badge{
left:14px;
right:14px;
bottom:14px;
padding:14px 15px;
border-radius:18px;
}
}
/* ===== INLINE <style> BLOCK #4 ===== */
/* ===== TICKER ===== */
.gallery-ticker-wrap{
position: relative;
overflow: hidden;
margin: 0 0 56px;
padding: 8px 0;
}
.gallery-ticker-wrap .ticker-wrapper{
overflow: hidden;
}
.gallery-ticker-wrap .ticker-track{
display: flex;
gap: 30px;
width: max-content;
animation: galleryTickerMove 34s linear infinite;
}
.gallery-ticker-wrap .ticker-track:hover{
animation-play-state: paused;
}
.gallery-ticker-wrap img{
height: 380px;
width: 260px;
object-fit: cover;
border-radius: 16px;
cursor: pointer;
}
@keyframes galleryTickerMove{
0%{ transform: translateX(0); }
100%{ transform: translateX(-50%); }
}
/* ===== MOSAIC (FIX REAL) ===== */
.mosaic-gallery{
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 14px;
}
.mosaic-item{
display: block;
overflow: hidden;
border-radius: 14px;
}
.mosaic-item img{
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform .3s ease;
}
.mosaic-item:hover img{
transform: scale(1.05);
}
.item-sm{ grid-row: span 1; }
.item-md{ grid-row: span 2; }
.item-lg{ grid-column: span 2; grid-row: span 2; }
.item-wide{ grid-column: span 2; }
/* responsive */
@media (max-width: 768px){
.mosaic-gallery{
grid-template-columns: repeat(2, 1fr);
}
.item-lg,
.item-wide{
grid-column: span 2;
}
}
/* ===== INLINE <style> BLOCK #5 ===== */
.wa-float{
position:fixed;
right:18px;
bottom:18px;
z-index:2147483647;
display:flex;
flex-direction:column;
align-items:flex-end;
font-family:inherit;
}
.wa-btn{
min-width:60px;
height:60px;
padding:0 14px 0 18px;
border-radius:999px;
border:none;
background:linear-gradient(135deg,#25D366,#128C7E);
color:#fff;
display:flex;
align-items:center;
justify-content:center;
gap:10px;
cursor:pointer;
box-shadow:0 10px 30px rgba(37,211,102,.45);
transition:transform .25s, box-shadow .25s;
}
.wa-btn:hover{
transform:translateY(-3px) scale(1.03);
box-shadow:0 14px 36px rgba(37,211,102,.55);
}
.wa-btn-text{
font-size:.95rem;
font-weight:800;
line-height:1;
white-space:nowrap;
}
.wa-btn svg{
flex:0 0 auto;
}
.wa-card{
position:absolute;
right:0;
bottom:74px;
width:min(360px,92vw);
background:#fff;
border-radius:18px;
border:1px solid #e3e6ea;
box-shadow:0 18px 60px rgba(0,0,0,.25);
overflow:hidden;
transform:translateY(10px);
opacity:0;
transition:.25s ease;
}
.wa-card[aria-modal="true"]{
transform:none;
opacity:1;
}
.wa-head{
display:flex;
align-items:center;
gap:12px;
padding:14px;
background:linear-gradient(135deg,#0056a7,#003d77);
color:#fff;
}
.wa-avatar{
width:40px;
height:40px;
background:#fff;
border-radius:10px;
display:grid;
place-items:center;
overflow:hidden;
}
.wa-avatar img{
width:26px;
height:26px;
object-fit:contain;
}
.wa-title{
font-weight:800;
}
.wa-status{
font-size:.85rem;
opacity:.9;
}
.wa-close{
margin-left:auto;
border:none;
background:transparent;
color:#fff;
font-size:24px;
cursor:pointer;
width:32px;
height:32px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
opacity:.9;
}
.wa-close:hover{
opacity:1;
background:rgba(255,255,255,.14);
}
.wa-body{
padding:14px;
max-height:40vh;
overflow:auto;
background:#f8f9fa;
display:flex;
flex-direction:column;
gap:8px;
}
.wa-bubble{
max-width:88%;
padding:10px 12px;
border-radius:14px;
font-size:.95rem;
box-shadow:0 4px 10px rgba(0,0,0,.08);
}
.wa-bot{
background:#fff;
border:1px solid #e3e6ea;
align-self:flex-start;
}
.wa-user{
background:#eaf7f0;
border:1px solid #cfeedd;
align-self:flex-end;
}
.wa-compose{
display:grid;
grid-template-columns:1fr auto;
gap:8px;
padding:10px;
border-top:1px solid #e3e6ea;
background:#fff;
}
.wa-compose textarea{
resize:none;
border-radius:12px;
padding:10px;
border:1px solid #e3e6ea;
font-family:inherit;
outline:none;
}
.wa-send{
background:#25D366;
color:#fff;
border:none;
border-radius:12px;
padding:0 16px;
cursor:pointer;
}
.wa-send:hover{
background:#1fb85a;
}
@media(max-width:480px){
.wa-float{
right:12px;
bottom:12px;
}
.wa-btn{
height:54px;
padding:0 12px 0 16px;
gap:8px;
}
.wa-btn-text{
font-size:.82rem;
}
.wa-card{
width:calc(100vw - 24px);
}
}