Preview de mixed.css
/* MIXED CSS PACK */
/* Template: camperasegresadosfull.com/index.html */
/* Template mtime: 2025-10-01 12:26:50 */
/* 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://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css */
/* ===== INLINE <style> BLOCK #1 ===== */
:root {
--primary-color: #6a11cb;
--secondary-color: #2575fc;
--accent-color: #ff3e9d;
--light-color: #f8f9fa;
--dark-color: #212529;
--transition: all 0.3s ease;
}
body {
font-family: 'Poppins', sans-serif;
color: var(--dark-color);
overflow-x: hidden;
scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, .display-1, .display-2, .display-3, .display-4 {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
}
/* Navbar */
.navbar {
background-color: rgba(255, 255, 255, 0.98) !important;
box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
padding: 20px 0;
transition: var(--transition);
}
.navbar.scrolled {
padding: 15px 0;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.navbar-brand {
font-weight: 800;
font-size: 1.8rem;
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.navbar-nav .nav-link {
color: var(--dark-color) !important;
font-weight: 600;
padding: 8px 15px;
margin: 0 5px;
position: relative;
transition: var(--transition);
}
.navbar-nav .nav-link:before {
content: '';
position: absolute;
width: 0;
height: 3px;
bottom: 0;
left: 0;
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
transition: var(--transition);
}
.navbar-nav .nav-link:hover:before {
width: 100%;
}
.navbar-nav .nav-link:hover {
color: var(--primary-color) !important;
}
/* Hero Section */
.hero-section {
background: url('img/herocampe.png') center/cover no-repeat;
min-height: 100vh;
display: flex;
align-items: center;
color: white;
position: relative;
padding: 120px 0 80px;
overflow: hidden;
}
.hero-content {
position: relative;
z-index: 2;
max-width: 800px;
margin: 0 auto;
text-align: center;
}
.hero-title {
font-size: 4rem;
margin-top: 700px; /* o ajustalo a gusto */
margin-bottom: 20px;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
animation: fadeInDown 1s ease;
line-height: 1.2;
}
.hero-subtitle {
font-size: 1.5rem;
margin-bottom: 30px;
animation: fadeInUp 1s ease 0.3s both;
}
.hero-buttons {
display: flex;
justify-content: center;
gap: 15px;
animation: fadeIn 1s ease 0.6s both;
}
.btn-gradient {
background: linear-gradient(45deg, var(--accent-color), #ff6b6b);
border: none;
color: white;
font-weight: 600;
letter-spacing: 0.5px;
padding: 12px 30px;
border-radius: 50px;
transition: var(--transition);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.btn-gradient:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
color: white;
}
.btn-outline-light {
border: 2px solid white;
color: white;
font-weight: 600;
padding: 12px 30px;
border-radius: 50px;
transition: var(--transition);
}
.btn-outline-light:hover {
background-color: white;
color: var(--primary-color);
}
/* Section Styles */
.section {
padding: 100px 0;
position: relative;
}
.section-title {
position: relative;
display: inline-block;
margin-bottom: 60px;
color: var(--dark-color);
}
.section-title:after {
content: '';
position: absolute;
width: 60px;
height: 4px;
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
bottom: -15px;
left: 50%;
transform: translateX(-50%);
border-radius: 2px;
}
.section-light {
background-color: var(--light-color);
}
.section-dark {
background-color: var(--dark-color);
color: white;
}
.section-gradient {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
}
/* About Section */
.about-img {
border-radius: 15px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
transition: var(--transition);
transform: perspective(1000px) rotateY(-5deg);
}
.about-img:hover {
transform: perspective(1000px) rotateY(0deg);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}
.about-badge {
display: inline-block;
background: linear-gradient(45deg, var(--accent-color), #ff6b6b);
color: white;
padding: 8px 20px;
border-radius: 50px;
font-weight: 600;
margin-bottom: 15px;
}
/* Services Section */
.service-card {
background: white;
border-radius: 15px;
padding: 40px 30px;
margin-bottom: 30px;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
transition: var(--transition);
height: 100%;
position: relative;
overflow: hidden;
z-index: 1;
}
.service-card:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.service-icon {
font-size: 2.5rem;
margin-bottom: 20px;
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.service-card h3 {
margin-bottom: 15px;
color: var(--dark-color);
}
/* Features Section */
.feature-box {
text-align: center;
padding: 40px 25px;
border-radius: 15px;
background: #f054b5;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
transition: var(--transition);
margin-bottom: 50px; /* Más separación */
height: 100%;
border: 3px solid #007bff; /* Borde azul */
}
.feature-box:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.feature-icon {
width: 80px;
height: 80px;
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
font-size: 2rem;
color: white;
}
/* Portfolio Section */
.portfolio-section {
background-color: #f5f5f5;
}
.portfolio-filter {
display: flex;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 40px;
gap: 10px;
}
.filter-btn {
padding: 10px 25px;
background: transparent;
border: 2px solid var(--primary-color);
color: var(--primary-color);
border-radius: 50px;
transition: var(--transition);
font-weight: 600;
}
.filter-btn:hover, .filter-btn.active {
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
color: white;
border-color: transparent;
}
.portfolio-item {
position: relative;
margin-bottom: 30px;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
transition: var(--transition);
}
.portfolio-item img {
width: 100%;
height: 300px;
object-fit: cover;
transition: var(--transition);
}
.portfolio-item:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.portfolio-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, rgba(106, 17, 203, 0.9), rgba(37, 117, 252, 0.9));
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
opacity: 0;
transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay {
opacity: 1;
}
.portfolio-overlay h3 {
color: white;
margin-bottom: 10px;
transform: translateY(20px);
transition: var(--transition);
}
.portfolio-overlay p {
color: rgba(255, 255, 255, 0.9);
transform: translateY(20px);
transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p {
transform: translateY(0);
}
/* Catalog Section */
.catalog-card {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
transition: var(--transition);
margin-bottom: 30px;
}
.catalog-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.catalog-img {
display: block;
margin: 0 auto 28px; /* menos espacio abajo */
max-width: 180px;
height: auto;
}
.catalog-body {
padding: 20px;
text-align: center;
}
.catalog-btn {
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
color: white;
border: none;
padding: 10px 25px;
border-radius: 50px;
font-weight: 600;
transition: var(--transition);
}
.catalog-btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
color: white;
}
/* Testimonials */
.testimonial-card {
background: white;
padding: 30px;
border-radius: 15px;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
margin-bottom: 30px;
position: relative;
}
.testimonial-card:before {
content: '"';
position: absolute;
top: 20px;
left: 20px;
font-size: 5rem;
color: rgba(106, 17, 203, 0.1);
font-family: Georgia, serif;
line-height: 1;
}
.testimonial-content {
position: relative;
z-index: 1;
margin-bottom: 20px;
font-style: italic;
}
.testimonial-author {
display: flex;
align-items: center;
}
.testimonial-author img {
width: 60px;
height: 60px;
border-radius: 50%;
margin-right: 15px;
object-fit: cover;
border: 3px solid var(--primary-color);
}
.author-info h5 {
margin-bottom: 0;
color: var(--dark-color);
}
.author-info p {
margin-bottom: 0;
color: #6c757d;
font-size: 0.9rem;
}
/* FAQ Section */
.accordion-item {
margin-bottom: 15px;
border-radius: 15px !important;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
border: none !important;
}
.accordion-button {
font-weight: 600;
padding: 20px;
background-color: white !important;
box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
color: var(--primary-color);
background-color: rgba(106, 17, 203, 0.05) !important;
}
.accordion-button:after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236a11cb'%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");
}
.accordion-body {
padding: 20px;
}
/* Contact Section */
.contact-form {
background: white;
padding: 40px;
border-radius: 15px;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.form-control {
padding: 15px;
border-radius: 10px;
border: 1px solid #e0e0e0;
margin-bottom: 20px;
transition: var(--transition);
}
.form-control:focus {
box-shadow: none;
border-color: var(--primary-color);
}
.contact-info-box {
background: white;
padding: 30px;
border-radius: 15px;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
margin-bottom: 30px;
transition: var(--transition);
height: 100%;
}
.contact-info-box:hover {
transform: translateY(-5px);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.contact-icon {
width: 70px;
height: 70px;
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
color: white;
margin-bottom: 20px;
}
/* Taplink Section */
.taplink-container {
background: white;
border-radius: 15px;
padding: 20px;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
iframe.taplink {
width: 100%;
min-height: 600px;
border: none;
border-radius: 10px;
}
/* Footer */
.footer {
background-color: var(--dark-color);
color: white;
padding: 80px 0 30px;
position: relative;
}
.footer:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 10px;
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}
.footer-logo {
font-size: 2rem;
font-weight: 800;
color: white;
margin-bottom: 20px;
display: inline-block;
background: linear-gradient(45deg, var(--accent-color), #ff6b6b);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.footer-about p {
color: rgba(255, 255, 255, 0.7);
margin-bottom: 20px;
}
.social-links {
display: flex;
gap: 15px;
}
.social-link {
width: 45px;
height: 45px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.1);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.2rem;
transition: var(--transition);
}
.social-link:hover {
background: linear-gradient(45deg, var(--accent-color), #ff6b6b);
color: white;
transform: translateY(-5px);
}
.footer-links h3 {
color: white;
margin-bottom: 25px;
font-size: 1.2rem;
position: relative;
padding-bottom: 10px;
}
.footer-links h3:after {
content: '';
position: absolute;
width: 40px;
height: 3px;
background: linear-gradient(45deg, var(--accent-color), #ff6b6b);
bottom: 0;
left: 0;
}
.footer-links ul {
list-style: none;
padding-left: 0;
}
.footer-links li {
margin-bottom: 12px;
}
.footer-links a {
color: rgba(255, 255, 255, 0.7);
transition: var(--transition);
text-decoration: none;
}
.footer-links a:hover {
color: var(--accent-color);
padding-left: 5px;
}
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 30px;
margin-top: 50px;
}
.footer-bottom p {
color: rgba(255, 255, 255, 0.5);
margin-bottom: 0;
}
/* Back to Top */
.back-to-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 60px;
height: 60px;
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
z-index: 99;
opacity: 0;
visibility: hidden;
transition: var(--transition);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.back-to-top.active {
opacity: 1;
visibility: visible;
}
.back-to-top:hover {
background: linear-gradient(45deg, var(--accent-color), #ff6b6b);
transform: translateY(-5px);
}
/* Animations */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Responsive Styles */
@media (max-width: 1199.98px) {
.hero-title {
font-size: 3.5rem;
}
}
@media (max-width: 991.98px) {
.hero-title {
font-size: 3rem;
}
.hero-subtitle {
font-size: 1.3rem;
}
.section {
padding: 80px 0;
}
}
@media (max-width: 767.98px) {
.hero-section {
background: url('img/herocampe.png') center/cover no-repeat;
background-blend-mode: overlay;
background-color:;
min-height: 80vh;
display: flex;
align-items: center;
color: white;
position: relative;
padding: 120px 0 80px;
overflow: hidden;
}
.hero-title {
font-size: 2.5rem;
}
.hero-buttons {
flex-direction: column;
align-items: center;
}
.section {
padding: 70px 0;
}
.section-title {
margin-bottom: 50px;
}
.contact-form {
padding: 30px;
}
}
@media (max-width: 575.98px) {
.hero-title {
font-size: 2.2rem;
}
.hero-subtitle {
font-size: 1.1rem;
}
.section {
padding: 60px 0;
}
.navbar-brand {
font-size: 1.5rem;
}
}
/* ===== INLINE <style> BLOCK #2 ===== */
/* Estilos para la barra de catálogos */
.catalog-bar {
background-color: #2c3e50;
color: white;
padding: 15px 0;
cursor: pointer;
text-align: center;
margin: 20px 0;
border-radius: 5px;
transition: all 0.3s ease;
}
.catalog-bar:hover {
background-color: #34495e;
}
.catalog-bar h3 {
margin: 0;
font-size: 1.5rem;
}
.catalog-content {
display: none;
padding: 20px 0;
animation: fadeIn 0.5s;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.catalog-card {
background: white;
border-radius: 8px;
padding: 15px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
margin-bottom: 20px;
text-align: center;
}
.catalog-btn {
background-color: #3498db;
color: white;
padding: 8px 20px;
border-radius: 20px;
text-decoration: none;
display: inline-block;
margin-top: 10px;
transition: background-color 0.3s;
}
.catalog-btn:hover {
background-color: #2980b9;
color: white;
}
/* ===== INLINE <style> BLOCK #3 ===== */
.img-ticker {
width: 300px;
height: auto;
border-radius: 8px;
flex-shrink: 0;
}
.ticker {
transition: transform 0.3s ease;
}
/* ===== INLINE <style> BLOCK #4 ===== */
/* Estilos base */
.social-float {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 9999;
}
.social-buttons {
display: flex;
flex-direction: column;
gap: 20px;
}
.social-btn {
position: relative;
display: flex;
justify-content: center;
align-items: center;
width: 60px;
height: 60px;
border-radius: 50%;
text-decoration: none;
transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
overflow: hidden;
}
.social-icon {
font-size: 28px;
color: white;
transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
z-index: 2;
}
.social-tooltip {
position: absolute;
right: 70px;
background: white;
padding: 8px 15px;
border-radius: 30px;
font-family: 'Poppins', sans-serif;
font-weight: 600;
font-size: 14px;
color: #333;
opacity: 0;
pointer-events: none;
transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.social-tooltip:before {
content: "";
position: absolute;
right: -8px;
top: 50%;
transform: translateY(-50%);
width: 0;
height: 0;
border-top: 8px solid transparent;
border-bottom: 8px solid transparent;
border-left: 8px solid white;
}
/* Efecto de onda para WhatsApp */
.pulse-effect {
position: absolute;
width: 100%;
height: 100%;
background: inherit;
border-radius: 50%;
z-index: 1;
opacity: 0;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(0.8);
opacity: 0.7;
}
70% {
transform: scale(1.3);
opacity: 0;
}
100% {
transform: scale(0.8);
opacity: 0;
}
}
/* Colores y efectos hover */
.whatsapp {
background: linear-gradient(45deg, #25D366, #128C7E);
}
.instagram {
background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.facebook {
background: linear-gradient(45deg, #3b5998, #0078d7);
}
.social-btn:hover {
transform: translateY(-5px) scale(1.1);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.social-btn:hover .social-tooltip {
opacity: 1;
right: 80px;
}
/* Efecto de brillo al pasar el mouse */
.social-btn:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 50%;
background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
opacity: 0;
transition: opacity 0.3s ease;
}
.social-btn:hover:after {
opacity: 1;
}
/* Animación de entrada */
.social-btn {
animation: floatIn 0.5s ease-out forwards;
opacity: 0;
transform: translateY(20px);
}
.whatsapp { animation-delay: 0.1s; }
.instagram { animation-delay: 0.2s; }
.facebook { animation-delay: 0.3s; }
@keyframes floatIn {
to {
opacity: 1;
transform: translateY(0);
}
}
/* Responsive */
@media (max-width: 768px) {
.social-float {
bottom: 20px;
right: 15px;
}
.social-btn {
width: 50px;
height: 50px;
}
.social-icon {
font-size: 24px;
}
.social-tooltip {
display: none;
}
}