Preview de mixed.css
/* MIXED CSS PACK */
/* Template: refrigeracionrivero.com.ar/index.html */
/* Template mtime: 2025-07-10 18:23:25 */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css */
/* external link (no embedded): https://unpkg.com/[email protected]/dist/aos.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap */
/* ===== INLINE <style> BLOCK #1 ===== */
:root {
--primary: #0062cc; /* Azul más intenso */
--secondary: #00d4c8; /* Turquesa brillante */
--accent: #ff6b00; /* Naranja para acentos */
--dark: #1a1a2e; /* Fondo oscuro */
--light: #f8f9fa;
--text-light: #ffffff;
--text-dark: #333333;
--gradient-primary: linear-gradient(135deg, var(--primary) 0%, #004a99 100%);
--gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #00a8b5 100%);
}
body {
font-family: 'Poppins', sans-serif;
overflow-x: hidden;
color: var(--text-dark);
background-color: #fefefe;
}
/* Scrollbar personalizada */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: var(--primary);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #0052b3;
}
/* Navbar - Moderna con efecto vidrio */
.navbar {
background: rgba(0, 98, 204, 0.9);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
padding: 15px 0;
}
.navbar.scrolled {
background: rgba(0, 98, 204, 0.95);
padding: 10px 0;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.navbar-brand {
font-weight: 700;
font-size: 1.8rem;
letter-spacing: -0.5px;
background: linear-gradient(to right, var(--text-light), #e6f2ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
transition: all 0.3s ease;
}
.navbar-brand:hover {
transform: scale(1.02);
}
.navbar .nav-link {
color: var(--text-light);
font-weight: 500;
position: relative;
margin: 0 10px;
padding: 8px 0;
transition: all 0.3s ease;
}
.navbar .nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--secondary);
transition: width 0.3s ease;
}
.navbar .nav-link:hover {
color: var(--secondary);
}
.navbar .nav-link:hover::after {
width: 100%;
}
.navbar-toggler {
border: none;
padding: 0.5rem;
}
.navbar-toggler:focus {
box-shadow: none;
}
.navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Botón CTA */
.btn-cta {
background: var(--gradient-secondary);
border: none;
color: white;
font-weight: 600;
padding: 10px 25px;
border-radius: 50px;
position: relative;
overflow: hidden;
z-index: 1;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 212, 200, 0.3);
}
.btn-cta::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #00a8b5 0%, var(--secondary) 100%);
z-index: -1;
transition: all 0.3s ease;
opacity: 1;
}
.btn-cta:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 212, 200, 0.4);
color: white;
}
.btn-cta:hover::before {
opacity: 0.9;
}
.btn-cta:active {
transform: translateY(1px);
}
/* Hero Section - Efecto Parallax con animación */
#inicio {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: var(--text-light);
background: url('img/logoxx.png') center/cover fixed;
position: relative;
overflow: hidden;
}
#inicio::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(0, 98, 204, 0.4) 0%, rgba(0, 180, 216, 0.4) 100%);
z-index: 1;
}
#inicio .content {
position: relative;
z-index: 2;
max-width: 800px;
padding: 0 20px;
margin-top: 380px;
}
#inicio h1 {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 1.5rem;
line-height: 1.2;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
animation: fadeInUp 1s ease;
}
#inicio p {
font-size: 1.5rem;
font-weight: 300;
margin-bottom: 2rem;
text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
animation: fadeInUp 1s ease 0.2s forwards;
opacity: 0;
}
#inicio .btn-cta {
animation: fadeInUp 1s ease 0.4s forwards;
opacity: 0;
font-size: 1.1rem;
padding: 12px 30px;
}
/* Animaciones clave */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes float {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(-15px);
}
100% {
transform: translateY(0px);
}
}
/* Section styling */
section {
padding: 6rem 0;
position: relative;
}
.section-title {
font-weight: 700;
margin-bottom: 3rem;
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 60px;
height: 4px;
background: var(--secondary);
border-radius: 2px;
}
/* Quiénes somos */
#quienessomos {
background-color: white;
}
#quienessomos h2 {
font-weight: 700;
color: var(--primary);
}
#quienessomos p {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 1.5rem;
}
#quienessomos strong {
color: var(--primary);
font-weight: 600;
}
#quienessomos img {
border-radius: 10px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
transition: all 0.5s ease;
}
#quienessomos img:hover {
transform: scale(1.02);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
/* Servicios */
#servicios {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
position: relative;
overflow: hidden;
}
#servicios::before {
content: '';
position: absolute;
top: -100px;
right: -100px;
width: 300px;
height: 300px;
background: var(--secondary);
opacity: 0.1;
border-radius: 50%;
z-index: 0;
}
#servicios::after {
content: '';
position: absolute;
bottom: -150px;
left: -150px;
width: 400px;
height: 400px;
background: var(--primary);
opacity: 0.1;
border-radius: 50%;
z-index: 0;
}
.service-card {
background: white;
border-radius: 15px;
padding: 30px;
height: 100%;
transition: all 0.4s ease;
position: relative;
z-index: 1;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
border: 1px solid rgba(0, 0, 0, 0.03);
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.service-icon {
font-size: 3.5rem;
margin-bottom: 1.5rem;
background: var(--gradient-secondary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-block;
transition: all 0.3s ease;
}
.service-card:hover .service-icon {
transform: scale(1.1);
}
.service-card h5 {
font-weight: 600;
margin-bottom: 1rem;
color: var(--primary);
}
.service-card p {
color: #666;
line-height: 1.7;
}
/* Why choose */
#porque {
background-color: white;
}
.why-card {
background: white;
border-radius: 15px;
padding: 30px;
height: 100%;
transition: all 0.4s ease;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
border-left: 4px solid var(--secondary);
position: relative;
overflow: hidden;
}
.why-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(0, 212, 200, 0.05) 0%, rgba(0, 98, 204, 0.05) 100%);
z-index: 0;
opacity: 0;
transition: all 0.3s ease;
}
.why-card:hover::before {
opacity: 1;
}
.why-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.why-card i {
font-size: 2rem;
margin-bottom: 1rem;
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.why-card h5 {
font-weight: 600;
margin-bottom: 1rem;
position: relative;
z-index: 1;
}
.why-card p {
color: #666;
line-height: 1.7;
position: relative;
z-index: 1;
}
/* Ticker / carousel images */
#ticker {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
#ticker .carousel {
border-radius: 15px;
overflow: hidden;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
#ticker .carousel-item {
text-align: center;
transition: transform 0.6s ease;
}
#ticker .carousel-item img {
width: 100%;
max-height: 600px;
object-fit: cover;
display: block;
margin: auto;
}
#ticker .carousel-control-prev,
#ticker .carousel-control-next {
width: 50px;
height: 50px;
background: rgba(0, 0, 0, 0.3);
border-radius: 50%;
top: 50%;
transform: translateY(-50%);
opacity: 1;
transition: all 0.3s ease;
}
#ticker .carousel-control-prev:hover,
#ticker .carousel-control-next:hover {
background: rgba(0, 0, 0, 0.6);
}
#ticker .carousel-indicators button {
width: 12px;
height: 12px;
border-radius: 50%;
margin: 0 5px;
background-color: rgba(0, 0, 0, 0.2);
border: none;
}
#ticker .carousel-indicators button.active {
background-color: var(--primary);
}
/* FAQs accordion */
#faqs {
background-color: white;
}
.accordion {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.accordion-item {
border: none;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
overflow: hidden;
}
.accordion-item:last-child {
border-bottom: none;
}
.accordion-button {
font-weight: 600;
padding: 20px;
background-color: white;
color: var(--text-dark);
box-shadow: none;
}
.accordion-button:not(.collapsed) {
background: var(--gradient-primary);
color: white;
}
.accordion-button:focus {
box-shadow: none;
border-color: transparent;
}
.accordion-button::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230062cc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
transition: all 0.3s ease;
}
.accordion-button:not(.collapsed)::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
transform: rotate(-180deg);
}
.accordion-body {
padding: 20px;
background-color: #f9f9f9;
line-height: 1.8;
}
/* Contact */
#contacto {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
#contacto .card {
border: none;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
transition: all 0.4s ease;
height: 100%;
}
#contacto .card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
#contacto .form-control {
padding: 12px 15px;
border-radius: 8px;
border: 1px solid rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}
#contacto .form-control:focus {
border-color: var(--secondary);
box-shadow: 0 0 0 0.25rem rgba(0, 212, 200, 0.25);
}
#contacto label {
font-weight: 500;
margin-bottom: 8px;
}
#contacto .btn-cta {
width: 100%;
padding: 12px;
font-size: 1.1rem;
}
#contacto .contact-info i {
font-size: 1.2rem;
margin-right: 10px;
color: var(--secondary);
}
#contacto .contact-info p {
margin-bottom: 1rem;
display: flex;
align-items: center;
}
#contacto .btn-outline-success {
border-color: var(--secondary);
color: var(--secondary);
font-weight: 500;
transition: all 0.3s ease;
}
#contacto .btn-outline-success:hover {
background: var(--gradient-secondary);
color: white;
border-color: transparent;
}
/* Footer */
footer {
background: var(--gradient-primary);
color: white;
padding: 3rem 0 1.5rem;
position: relative;
}
footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 10px;
background: var(--gradient-secondary);
}
.footer-content {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.footer-logo {
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 1.5rem;
background: linear-gradient(to right, white, #e6f2ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.footer-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin-bottom: 2rem;
}
.footer-links a {
color: white;
text-decoration: none;
transition: all 0.3s ease;
}
.footer-links a:hover {
color: var(--secondary);
transform: translateY(-2px);
}
.social-links {
display: flex;
gap: 20px;
margin-bottom: 2rem;
}
.social-links a {
color: white;
font-size: 1.5rem;
transition: all 0.3s ease;
}
.social-links a:hover {
color: var(--secondary);
transform: translateY(-3px);
}
.copyright {
font-size: 0.9rem;
opacity: 0.8;
}
/* Back to top button */
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
background: var(--gradient-secondary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
z-index: 999;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(0, 212, 200, 0.3);
}
opacity: 1;
visibility: visible;
}
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 212, 200, 0.4);
}
/* Responsive adjustments */
@media (max-width: 992px) {
#inicio h1 {
font-size: 2.8rem;
}
#inicio p {
font-size: 1.2rem;
}
.navbar-brand {
font-size: 1.5rem;
}
}
@media (max-width: 768px) {
section {
padding: 4rem 0;
}
#inicio h1 {
font-size: 2.2rem;
}
#inicio p {
font-size: 1.1rem;
}
.service-card, .why-card {
padding: 20px;
}
}
@media (max-width: 576px) {
#inicio h1 {
font-size: 1.8rem;
}
.section-title {
font-size: 1.8rem;
}
.footer-links {
flex-direction: column;
gap: 10px;
}
}
/* --- Ajustes ticker corregido (10 Jul 2025) --- */
/* --- Ajuste hero desplazado (10 Jul 2025) --- */
#inicio {
align-items: flex-start; /* ubica el texto arriba */
padding-top: 45vh; /* empuja el texto hacia abajo (45% de la altura) */
}
@media (max-width: 992px) {
#inicio {
padding-top: 50vh;
}
}
@media (max-width: 576px) {
#inicio {
padding-top: 55vh;
}
}
#ticker .carousel-item {
height: 500px;
}
@media (max-width: 768px) {
#ticker .carousel-item {
height: 350px;
}
}
#ticker .carousel-item img {
height: 100%;
width: auto;
max-width: 100%;
object-fit: contain;
}
/* --- Ajuste hero responsive (10 Jul 2025) --- */
@media (max-width: 768px) {
#inicio {
background-size: contain; /* muestra la imagen completa */
background-repeat: no-repeat;
background-attachment: scroll; /* evita zoom en móviles */
background-position: center top;
min-height: 80vh; /* un poco más bajo que 100vh */
padding-top: 40vh; /* texto más abajo pero sin tapar la imagen */
}
}
@media (max-width: 576px) {
#inicio {
padding-top: 45vh;
}
}
/* --- Ajuste hero responsive v2 (10 Jul 2025) ---
Se cambia background-size a cover para que la imagen llene el ancho
y se reduce min-height a 60vh para evitar tanto espacio vacío */
@media (max-width: 768px) {
#inicio {
background-size: cover;
background-position: center;
min-height: 60vh;
padding-top: 35vh;
}
}
@media (max-width: 576px) {
#inicio {
padding-top: 40vh;
}
}
/* --- Ajuste hero responsive v3 (10 Jul 2025) ---
Un poco más pequeño: alto 50vh y padding-top 30vh */
@media (max-width: 768px) {
#inicio {
min-height: 50vh;
padding-top: 30vh;
}
}
@media (max-width: 576px) {
#inicio {
padding-top: 35vh;
}
}
/* --- Floating WhatsApp & Facebook buttons (Added 10 Jul 2025) --- */
.floating-btn {
position: fixed;
right: 30px;
width: 55px;
height: 55px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.6rem;
color: #ffffff;
z-index: 999;
box-shadow: 0 5px 15px rgba(0,0,0,0.25);
transition: transform 0.3s ease;
}
.floating-btn:hover {
transform: translateY(-5px);
}
.floating-whatsapp {
bottom: 30px;
background: #25d366;
}
.floating-facebook {
bottom: 95px; /* 30 + 55 + 10 spacing */
background: #1877f2;
}
/* ===== INLINE <style> BLOCK #2 ===== */
:root {
--primary: #0062cc; /* Azul más intenso */
--secondary: #00d4c8; /* Turquesa brillante */
--accent: #ff6b00; /* Naranja para acentos */
--dark: #1a1a2e; /* Fondo oscuro */
--light: #f8f9fa;
--text-light: #ffffff;
--text-dark: #333333;
--gradient-primary: linear-gradient(135deg, var(--primary) 0%, #004a99 100%);
--gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #00a8b5 100%);
}
body {
font-family: 'Poppins', sans-serif;
overflow-x: hidden;
color: var(--text-dark);
background-color: #fefefe;
}
/* Navbar - Moderna con efecto vidrio */
.navbar {
background: rgba(0, 98, 204, 0.9);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
padding: 15px 0;
}
.navbar.scrolled {
background: rgba(0, 98, 204, 0.95);
padding: 10px 0;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.navbar-brand {
font-weight: 700;
font-size: 1.8rem;
letter-spacing: -0.5px;
background: linear-gradient(to right, var(--text-light), #e6f2ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
transition: all 0.3s ease;
}
.navbar-brand:hover {
transform: scale(1.02);
}
.navbar .nav-link {
color: var(--text-light);
font-weight: 500;
position: relative;
margin: 0 10px;
padding: 8px 0;
transition: all 0.3s ease;
}
.navbar .nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--secondary);
transition: width 0.3s ease;
}
.navbar .nav-link:hover {
color: var(--secondary);
}
.navbar .nav-link:hover::after {
width: 100%;
}
.navbar-toggler {
border: none;
padding: 0.5rem;
}
.navbar-toggler:focus {
box-shadow: none;
}
.navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Botón CTA */
.btn-cta {
background: var(--gradient-secondary);
border: none;
color: white;
font-weight: 600;
padding: 10px 25px;
border-radius: 50px;
position: relative;
overflow: hidden;
z-index: 1;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 212, 200, 0.3);
}
.btn-cta::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #00a8b5 0%, var(--secondary) 100%);
z-index: -1;
transition: all 0.3s ease;
opacity: 1;
}
.btn-cta:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 212, 200, 0.4);
color: white;
}
.btn-cta:hover::before {
opacity: 0.9;
}
.btn-cta:active {
transform: translateY(1px);
}
/* Hero Section - Efecto Parallax con animación */
#inicio {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: var(--text-light);
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/logozzzx.png') center/cover fixed;
position: relative;
overflow: hidden;
}
#inicio::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(0, 98, 204, 0.4) 0%, rgba(0, 180, 216, 0.4) 100%);
z-index: 1;
}
#inicio .content {
position: relative;
z-index: 2;
max-width: 800px;
padding: 0 20px;
margin-top: 380px;
}
#inicio h1 {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 1.5rem;
line-height: 1.2;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
animation: fadeInUp 1s ease;
}
#inicio p {
font-size: 1.5rem;
font-weight: 300;
margin-bottom: 2rem;
text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
animation: fadeInUp 1s ease 0.2s forwards;
opacity: 0;
}
#inicio .btn-cta {
animation: fadeInUp 1s ease 0.4s forwards;
opacity: 0;
font-size: 1.1rem;
padding: 12px 30px;
}
/* Animaciones clave */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes float {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(-15px);
}
100% {
transform: translateY(0px);
}
}
/* Section styling */
section {
padding: 6rem 0;
position: relative;
}
.section-title {
font-weight: 700;
margin-bottom: 3rem;
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 60px;
height: 4px;
background: var(--secondary);
border-radius: 2px;
}
/* Quiénes somos */
#quienessomos {
background-color: white;
}
#quienessomos h2 {
font-weight: 700;
color: var(--primary);
}
#quienessomos p {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 1.5rem;
}
#quienessomos strong {
color: var(--primary);
font-weight: 600;
}
#quienessomos img {
border-radius: 10px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
transition: all 0.5s ease;
}
#quienessomos img:hover {
transform: scale(1.02);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
/* Servicios */
#servicios {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
position: relative;
overflow: hidden;
}
#servicios::before {
content: '';
position: absolute;
top: -100px;
right: -100px;
width: 300px;
height: 300px;
background: var(--secondary);
opacity: 0.1;
border-radius: 50%;
z-index: 0;
}
#servicios::after {
content: '';
position: absolute;
bottom: -150px;
left: -150px;
width: 400px;
height: 400px;
background: var(--primary);
opacity: 0.1;
border-radius: 50%;
z-index: 0;
}
.service-card {
background: white;
border-radius: 15px;
padding: 30px;
height: 100%;
transition: all 0.4s ease;
position: relative;
z-index: 1;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
border: 1px solid rgba(0, 0, 0, 0.03);
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.service-icon {
font-size: 3.5rem;
margin-bottom: 1.5rem;
background: var(--gradient-secondary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-block;
transition: all 0.3s ease;
}
.service-card:hover .service-icon {
transform: scale(1.1);
}
.service-card h5 {
font-weight: 600;
margin-bottom: 1rem;
color: var(--primary);
}
.service-card p {
color: #666;
line-height: 1.7;
}
/* Why choose */
#porque {
background-color: white;
}
.why-card {
background: white;
border-radius: 15px;
padding: 30px;
height: 100%;
transition: all 0.4s ease;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
border-left: 4px solid var(--secondary);
position: relative;
overflow: hidden;
}
.why-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(0, 212, 200, 0.05) 0%, rgba(0, 98, 204, 0.05) 100%);
z-index: 0;
opacity: 0;
transition: all 0.3s ease;
}
.why-card:hover::before {
opacity: 1;
}
.why-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.why-card i {
font-size: 2rem;
margin-bottom: 1rem;
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.why-card h5 {
font-weight: 600;
margin-bottom: 1rem;
position: relative;
z-index: 1;
}
.why-card p {
color: #666;
line-height: 1.7;
position: relative;
z-index: 1;
}
/* Ticker / carousel images */
#ticker {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
#ticker .carousel {
border-radius: 15px;
overflow: hidden;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
#ticker .carousel-item {
text-align: center;
transition: transform 0.6s ease;
}
#ticker .carousel-item img {
width: 100%;
max-height: 600px;
object-fit: cover;
display: block;
margin: auto;
}
#ticker .carousel-control-prev,
#ticker .carousel-control-next {
width: 50px;
height: 50px;
background: rgba(0, 0, 0, 0.3);
border-radius: 50%;
top: 50%;
transform: translateY(-50%);
opacity: 1;
transition: all 0.3s ease;
}
#ticker .carousel-control-prev:hover,
#ticker .carousel-control-next:hover {
background: rgba(0, 0, 0, 0.6);
}
#ticker .carousel-indicators button {
width: 12px;
height: 12px;
border-radius: 50%;
margin: 0 5px;
background-color: rgba(0, 0, 0, 0.2);
border: none;
}
#ticker .carousel-indicators button.active {
background-color: var(--primary);
}
/* FAQs accordion */
#faqs {
background-color: white;
}
.accordion {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.accordion-item {
border: none;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
overflow: hidden;
}
.accordion-item:last-child {
border-bottom: none;
}
.accordion-button {
font-weight: 600;
padding: 20px;
background-color: white;
color: var(--text-dark);
box-shadow: none;
}
.accordion-button:not(.collapsed) {
background: var(--gradient-primary);
color: white;
}
.accordion-button:focus {
box-shadow: none;
border-color: transparent;
}
.accordion-button::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230062cc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
transition: all 0.3s ease;
}
.accordion-button:not(.collapsed)::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
transform: rotate(-180deg);
}
.accordion-body {
padding: 20px;
background-color: #f9f9f9;
line-height: 1.8;
}
/* Contact */
#contacto {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
#contacto .card {
border: none;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
transition: all 0.4s ease;
height: 100%;
}
#contacto .card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
#contacto .form-control {
padding: 12px 15px;
border-radius: 8px;
border: 1px solid rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}
#contacto .form-control:focus {
border-color: var(--secondary);
box-shadow: 0 0 0 0.25rem rgba(0, 212, 200, 0.25);
}
#contacto label {
font-weight: 500;
margin-bottom: 8px;
}
#contacto .btn-cta {
width: 100%;
padding: 12px;
font-size: 1.1rem;
}
#contacto .contact-info i {
font-size: 1.2rem;
margin-right: 10px;
color: var(--secondary);
}
#contacto .contact-info p {
margin-bottom: 1rem;
display: flex;
align-items: center;
}
#contacto .btn-outline-success {
border-color: var(--secondary);
color: var(--secondary);
font-weight: 500;
transition: all 0.3s ease;
}
#contacto .btn-outline-success:hover {
background: var(--gradient-secondary);
color: white;
border-color: transparent;
}
/* Footer */
footer {
background: var(--gradient-primary);
color: white;
padding: 3rem 0 1.5rem;
position: relative;
}
footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 10px;
background: var(--gradient-secondary);
}
.footer-content {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.footer-logo {
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 1.5rem;
background: linear-gradient(to right, white, #e6f2ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.footer-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin-bottom: 2rem;
}
.footer-links a {
color: white;
text-decoration: none;
transition: all 0.3s ease;
}
.footer-links a:hover {
color: var(--secondary);
transform: translateY(-2px);
}
.social-links {
display: flex;
gap: 20px;
margin-bottom: 2rem;
}
.social-links a {
color: white;
font-size: 1.5rem;
transition: all 0.3s ease;
}
.social-links a:hover {
color: var(--secondary);
transform: translateY(-3px);
}
.copyright {
font-size: 0.9rem;
opacity: 0.8;
}
/* Back to top button */
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
background: var(--gradient-secondary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
z-index: 999;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(0, 212, 200, 0.3);
}
opacity: 1;
visibility: visible;
}
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 212, 200, 0.4);
}
/* Responsive adjustments */
@media (max-width: 992px) {
#inicio h1 {
font-size: 2.8rem;
}
#inicio p {
font-size: 1.2rem;
}
.navbar-brand {
font-size: 1.5rem;
}
}
@media (max-width: 768px) {
section {
padding: 4rem 0;
}
#inicio h1 {
font-size: 2.2rem;
}
#inicio p {
font-size: 1.1rem;
}
.service-card, .why-card {
padding: 20px;
}
}
@media (max-width: 576px) {
#inicio h1 {
font-size: 1.8rem;
}
.section-title {
font-size: 1.8rem;
}
.footer-links {
flex-direction: column;
gap: 10px;
}
}
/* --- Ajustes ticker corregido (10 Jul 2025) --- */
/* --- Ajuste hero desplazado (10 Jul 2025) --- */
#inicio {
align-items: flex-start; /* ubica el texto arriba */
padding-top: 45vh; /* empuja el texto hacia abajo (45% de la altura) */
}
@media (max-width: 992px) {
#inicio {
padding-top: 50vh;
}
}
@media (max-width: 576px) {
#inicio {
padding-top: 55vh;
}
}
#ticker .carousel-item {
height: 500px;
}
@media (max-width: 768px) {
#ticker .carousel-item {
height: 350px;
}
}
#ticker .carousel-item img {
height: 100%;
width: auto;
max-width: 100%;
object-fit: contain;
}
/* --- Ajuste hero responsive (10 Jul 2025) --- */
@media (max-width: 768px) {
#inicio {
background-size: contain; /* muestra la imagen completa */
background-repeat: no-repeat;
background-attachment: scroll; /* evita zoom en móviles */
background-position: center top;
min-height: 80vh; /* un poco más bajo que 100vh */
padding-top: 40vh; /* texto más abajo pero sin tapar la imagen */
}
}
@media (max-width: 576px) {
#inicio {
padding-top: 45vh;
}
}
/* --- Ajuste hero responsive v2 (10 Jul 2025) ---
Se cambia background-size a cover para que la imagen llene el ancho
y se reduce min-height a 60vh para evitar tanto espacio vacío */
@media (max-width: 768px) {
#inicio {
background-size: cover;
background-position: center;
min-height: 60vh;
padding-top: 35vh;
}
}
@media (max-width: 576px) {
#inicio {
padding-top: 40vh;
}
}
/* --- Ajuste hero responsive v3 (10 Jul 2025) ---
Un poco más pequeño: alto 50vh y padding-top 30vh */
@media (max-width: 768px) {
#inicio {
min-height: 50vh;
padding-top: 30vh;
}
}
@media (max-width: 576px) {
#inicio {
padding-top: 35vh;
}
}