
:root {
    --primary-color: #e0f0ea;
    --secondary-color: #95adbe;
    --tertiary-color: #574f7d;
    --quaternary-color: #503a65;
    --dark-color: #3c2a4d;
    --white: #ffffff;
    --light-gray: #f8f9fa;
}

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

body {
    font-family: 'Carme', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--primary-color);
}

.cousine-font { 
    font-family: 'Cousine', monospace; 
}

.benchnine-font { 
    font-family: 'BenchNine', sans-serif; 
    font-weight: 400;
}

/* Cookie Banner */
#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

#cookieBanner.show {
    transform: translateY(0);
}

#cookieBanner .btn-info {
    background: var(--secondary-color);
    border: none;
    color: var(--white);
}

/* Navigation */
.navbar {
    background: rgba(60, 42, 77, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    color: var(--primary-color) !important;
    margin: 0 10px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--quaternary-color) 50%, var(--tertiary-color) 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

.hero-overlay {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    border: none;
    color: var(--white);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    color: var(--white);
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 13px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* Sections */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--tertiary-color);
    text-align: center;
    margin-bottom: 3rem;
}

/* Flota Section */
.flota-section {
    background: var(--white);
    position: relative;
}

.flota-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(224, 240, 234, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(149, 173, 190, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.yacht-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.yacht-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.yacht-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.yacht-card:hover .yacht-image img {
    transform: scale(1.1);
}

.yacht-info {
    padding: 25px;
}

.yacht-info h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.yacht-info p {
    color: var(--tertiary-color);
    margin-bottom: 20px;
}

.yacht-features {
    display: flex;
    gap: 20px;
}

.yacht-features span {
    color: var(--quaternary-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Servicio Destacado */
.servicio-destacado {
    background: linear-gradient(135deg, var(--quaternary-color), var(--dark-color));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.servicio-destacado::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: rgba(224, 240, 234, 0.1);
    transform: rotate(15deg);
    pointer-events: none;
}

.servicio-content {
    padding: 40px 0;
}

.servicio-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.servicio-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.servicio-price {
    margin-bottom: 30px;
}

.price-from {
    font-size: 1rem;
    color: var(--secondary-color);
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 10px;
}

.price-period {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.btn-cta {
    background: var(--primary-color);
    color: var(--dark-color);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Destinos Section */
.destinos-section {
    background: var(--primary-color);
    position: relative;
}

.destino-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.destino-card:hover {
    transform: scale(1.05);
}

.destino-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.destino-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destino-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 30px 20px 20px;
    text-align: center;
}

.destino-overlay h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.destino-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Testimonios */
.testimonios-section {
    background: var(--white);
    position: relative;
}

.testimonios-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(87, 79, 125, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(80, 58, 101, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonio-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonio-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--tertiary-color);
    margin-bottom: 25px;
    line-height: 1.8;
}

.client-info h5 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.client-info span {
    color: var(--quaternary-color);
    font-size: 0.9rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--tertiary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Why Choose Section */
.why-choose-section {
    background: var(--light-gray);
    position: relative;
}

.feature-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.feature-card h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--tertiary-color);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: var(--primary-color);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.accordion-button {
    background: var(--white);
    color: var(--dark-color);
    font-weight: 600;
    padding: 20px 25px;
    border: none;
    font-size: 1.1rem;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}

.footer .navbar-brand{
    margin-bottom: 20px;
}
.accordion-button:not(.collapsed) {
    background: var(--tertiary-color);
    color: var(--white);
}

.accordion-body {
    background: var(--white);
    color: var(--tertiary-color);
    padding: 25px;
    line-height: 1.7;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'BenchNine', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--white);
    margin-top: 5px;
    opacity: 0.9;
}

.historia-section {
    background: var(--white);
    position: relative;
}

.historia-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(224, 240, 234, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(149, 173, 190, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.historia-content {
    padding: 40px 0;
}

.historia-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--tertiary-color);
    margin-bottom: 20px;
}

.valores-section {
    background: var(--primary-color);
    position: relative;
}

.valor-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.valor-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.valor-card h4 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.4rem;
}

.valor-card p {
    color: var(--tertiary-color);
    line-height: 1.7;
}

.equipo-section {
    background: var(--white);
    position: relative;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.team-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.team-position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.team-description {
    color: var(--tertiary-color);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--tertiary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.team-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.mision-vision-section {
    background: linear-gradient(135deg, var(--quaternary-color), var(--dark-color));
    color: var(--white);
}

.mision-card, .vision-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.mision-card h3, .vision-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.mision-card p, .vision-card p {
    line-height: 1.7;
    opacity: 0.95;
}

.certificaciones-section {
    background: var(--light-gray);
}

.cert-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.cert-icon {
    font-size: 2.5rem;
    color: var(--tertiary-color);
    margin-bottom: 20px;
}

.cert-card h5 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.cert-card p {
    color: var(--quaternary-color);
    font-size: 0.9rem;
}

.cta-section {
    background: var(--primary-color);
    position: relative;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--tertiary-color);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    border: none;
    color: var(--white);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: var(--white);
}

.btn-cta-secondary {
    background: transparent;
    border: 2px solid var(--dark-color);
    color: var(--dark-color);
    padding: 13px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-secondary:hover {
    background: var(--dark-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Page Styles */
.contact-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    opacity: 0.8;
    background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--dark-color) 100%);
}

.contact-hero-section .hero-background::before {
    background-image: url('images/contact.jpg');
}

.hero-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    min-width: 250px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-item h5 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-form-section {
    background: var(--white);
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(224, 240, 234, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(149, 173, 190, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.contact-form-card {
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.form-header h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.form-header p {
    color: var(--tertiary-color);
    font-size: 1.1rem;
}

.form-label {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(149, 173, 190, 0.25);
}

.form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-contact-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    border: none;
    color: var(--white);
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-contact-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: var(--white);
}

.contact-info-section {
    background: var(--primary-color);
}

.info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

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

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.info-card h4 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.info-card p {
    color: var(--tertiary-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.horarios p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-direct p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: var(--tertiary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: var(--white);
}

.map-section {
    position: relative;
}

.map-section iframe {
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.map-section:hover iframe {
    filter: grayscale(0);
}

.faq-contact-section {
    background: var(--light-gray);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .hero-stats, .hero-contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-item {
        min-width: auto;
        width: 100%;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .historia-content,
    .servicio-content {
        padding: 20px 0;
    }
    
    .mision-card,
    .vision-card {
        padding: 30px 20px;
    }
    
    .mv-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form-card {
        padding: 25px 15px;
    }
}

/* Legal Pages Styles */
.legal-header {
    background: linear-gradient(135deg, var(--tertiary-color), var(--dark-color));
    color: var(--white);
    padding: 120px 0 60px;
    text-align: center;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.legal-header .lead {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.9;
}

.legal-content {
    background: var(--white);
    padding: 80px 0;
}

.legal-document {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.legal-document h2 {
    color: var(--dark-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 40px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    color: var(--tertiary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 30px;
}

.legal-document h4 {
    color: var(--quaternary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 20px;
}

.legal-document p {
    color: var(--tertiary-color);
    margin-bottom: 15px;
    text-align: justify;
}

.legal-document ul, .legal-document ol {
    color: var(--tertiary-color);
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-document li {
    margin-bottom: 8px;
}

.legal-document strong {
    color: var(--dark-color);
    font-weight: 600;
}

.legal-document a {
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.legal-document a:hover {
    color: var(--tertiary-color);
    border-bottom-color: var(--tertiary-color);
}

.contact-info-legal {
    background: var(--primary-color);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-info-legal p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--dark-color);
    font-weight: 500;
}

.contact-info-legal i {
    color: var(--secondary-color);
    width: 20px;
    margin-right: 10px;
}

/* Cookie Banner Specific Styles */
.cookie-settings {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    margin-top: 15px;
}

.cookie-category {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.cookie-category h6 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.cookie-category p {
    color: var(--tertiary-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.cookie-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--secondary-color);
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

/* Table Styles for Legal Documents */
.legal-document table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.legal-document th, .legal-document td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.legal-document th {
    background: var(--primary-color);
    color: var(--dark-color);
    font-weight: 600;
}

.legal-document tr:hover {
    background: #f8f9fa;
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
    .legal-header {
        padding: 100px 0 40px;
    }
    
    .legal-header h1 {
        font-size: 2.2rem;
    }
    
    .legal-content {
        padding: 40px 0;
    }
    
    .legal-document {
        padding: 30px 20px;
    }
    
    .legal-document h2 {
        font-size: 1.5rem;
    }
    
    .legal-document h3 {
        font-size: 1.3rem;
    }
    
    .legal-document h4 {
        font-size: 1.1rem;
    }
    
    .hero-contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-item {
        min-width: auto;
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .contact-item i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .legal-header h1 {
        font-size: 1.8rem;
    }
    
    .legal-document {
        padding: 20px 15px;
    }
    
    .legal-document p,
    .legal-document li {
        text-align: left;
    }
}

/* About Page Styles */
.about-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    opacity: 0.9;
    background: linear-gradient(135deg, var(--quaternary-color) 0%, var(--dark-color) 100%);
}

.about-hero-section .hero-background::before {
    background-image: url('images/about.jpg');
    z-index: 2;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: var(--white);
}


/* Decorative Section */
.decorative-section {
    background: linear-gradient(135deg, var(--dark-color), var(--quaternary-color));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.waves-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 240, 234, 0.3), transparent);
    animation: wave 6s ease-in-out infinite;
}

.wave1 {
    animation-delay: 0s;
    opacity: 0.7;
}

.wave2 {
    animation-delay: 2s;
    opacity: 0.5;
}

.wave3 {
    animation-delay: 4s;
    opacity: 0.3;
}

@keyframes wave {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(-50%);
    }
}

.decorative-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.decorative-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer h5,
.footer h6 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--tertiary-color);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--secondary-color);
    width: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .servicio-content h3 {
        font-size: 2rem;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .decorative-title {
        font-size: 2.2rem;
    }
    
    .decorative-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .servicio-content {
        padding: 20px 0;
    }
    
    .testimonio-card {
        padding: 25px;
    }
    
    .feature-card {
        padding: 30px 15px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}