/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 107px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #0088CC;
    transition: color 0.3s ease;
}

a:hover {
    color: #006699;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #0088CC;
    color: white;
}

.btn-primary:hover {
    background: #006699;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0088CC;
}

.btn-outline {
    background: transparent;
    color: #0088CC;
    border: 2px solid #0088CC;
}

.btn-outline:hover {
    background: #0088CC;
    color: white;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
}

/* Top Header */
.top-header {
    background-color: #f8f9fa;
    padding: 6px 0;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1101;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-right: 15px;
}

.contact-info span {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.contact-info i {
    margin-right: 5px;
    color: #0088CC;
    font-size: 0.9em;
}

.secondary-menu {
    flex: 1;
    margin: 0 20px;
}

.secondary-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.secondary-menu a {
    color: #555;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.secondary-menu a:hover {
    color: #0088CC;
    text-decoration: none;
}

.language-selector {
    display: flex;
    gap: 5px;
}

.language-dropdown {
    position: relative;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid #ddd;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    min-width: 80px;
    justify-content: space-between;
}

.language-toggle:hover {
    border-color: #0088CC;
    background-color: #f8f9fa;
}

.flag-icon {
    font-size: 0.9rem;
    display: inline-block;
    width: 16px;
    height: 12px;
    margin-right: 2px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Fallback for flag emojis - ensure they display properly */
.flag-icon {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "EmojiOne Color", "Android Emoji", sans-serif;
    line-height: 1;
}

.lang-text {
    font-weight: 500;
}

.language-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.language-dropdown.active .language-toggle i {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 140px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 2px;
}

.language-dropdown.active .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-menu li {
    list-style: none;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    font-size: 0.8rem;
    transition: background-color 0.2s ease;
}

.lang-option:hover {
    background-color: #f8f9fa;
    color: #0088CC;
}

.lang-option.active {
    background-color: #0088CC;
    color: white;
}

.lang-option.active:hover {
    background-color: #006699;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 35px;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    height: 72px;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 40px;
}

.nav-right {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    height: 100%;
    align-items: stretch;
}

.nav-menu li {
    position: relative;
    display: flex;
    align-items: stretch;
}

.nav-menu a {
    color: #55555b;
    text-decoration: none;
    font-weight: 500;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    height: 100%;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: white;
    background: #0088CC;
}

/* Active navigation link */
.nav-menu a.active {
    color: #0088CC;
    font-weight: 600;
}

.nav-menu a.active:hover {
    color: white;
    background: #0088CC;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.has-dropdown > a i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0088CC;
    min-width: 180px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0;
    list-style: none;
    border-radius: 0 0 4px 4px;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    width: 100%;
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 14px 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    height: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: left;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content .tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-content .description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* About Hero */
.about-hero {
    position: relative;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.about-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.about-hero .hero-content {
    text-align: left;
    max-width: 100%;
    padding-top: 10px;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Breadcrumbs */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb .current {
    color: white;
    font-weight: 500;
}

/* Sections */
.section {
    padding: 80px 0;
}

/* Home Section */
.home {
    padding: 0;
}

.home-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 72px);
}

.home-text h1 {
    color: #0088CC;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.home-text .tagline {
    color: #0088CC;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.home-text .description {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.home-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Trading Section */
.trading {
    background: #f8f9fa;
    text-align: center;
}

.trading h2 {
    color: #0088CC;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.trading-content {
    max-width: 800px;
    margin: 0 auto;
}

.trading-text p {
    font-size: 1.2rem;
    color: #555;
    font-style: italic;
}

/* Servicios de Trading Section */
.trading-services {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.trading-services .section-header {
    margin-bottom: 50px;
    text-align: center;
}

.trading-services .section-title {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.trading-services .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #0088CC;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 136, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.75rem;
    color: #0088CC;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #0088CC;
    color: #fff;
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #0088CC;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #edf2f7;
}

.service-link i {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #006699;
    text-decoration: none;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .trading-services {
        padding: 60px 0;
    }
    
    .trading-services .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Trading Internacional Title */
.trading-intro {
    padding: 40px 0 20px;
    background: white;
}

.trading-title {
    text-align: center;
    color: #1a365d;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5em;
    position: relative;
    padding-bottom: 15px;
}

.trading-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #0088CC;
}

/* Features Section */
.features {
    padding: 60px 0;
    background: white;
}

.features h2 {
    text-align: center;
    color: #0088CC;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin: 0;
}

.feature-card {
    position: relative;
    height: 360px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.72) 100%
    );
    transition: background 0.3s ease;
}

.feature-card:hover .feature-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.18) 0%,
        rgba(0, 136, 204, 0.88) 100%
    );
}

.feature-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px;
    color: white;
    z-index: 1;
}

.feature-icon {
    font-size: 3rem;
    color: #0088CC;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: white;
    font-size: 1.25rem;
    margin: 0 0 10px 0;
    font-weight: 700;
    letter-spacing: 1px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Products Preview Section */
.products-preview {
    background: #f8f9fa;
}

.products-preview h2 {
    text-align: center;
    color: #0088CC;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: #0088CC;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.product-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.products-cta {
    text-align: center;
}

/* About Section */
.about {
    background: white;
}

.about h2 {
    text-align: center;
    color: #0088CC;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Conoce Section */
.conoce {
    background: #f8f9fa;
    padding: 80px 0;
}

.conoce h2 {
    text-align: center;
    color: #0088CC;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.conoce-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.conoce-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.conoce-item h3 {
    color: #0088CC;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.conoce-item p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0088CC, #00CC88);
}

.team-section h2 {
    color: white;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1.5rem;
}

.team-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #fff;
    border-radius: 2px;
}

.team-description {
    text-align: center;
    margin-top: 3rem;
    padding: 0 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-description p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 300;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    gap: 2.5rem;
    margin-top: 4rem;
    justify-content: center;
}

.team-member {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.team-member:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.team-member:hover::before {
    opacity: 1;
}

.team-image {
    height: 300px;
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
}

.team-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .team-image::after {
    opacity: 1;
}

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

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

.team-info {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.team-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.team-info p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

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

.team-social a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* CTA Section */
.cta {
    background: #0088CC;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 300;
    text-align: justify;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
}

/* Products Sections */
.products-right {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #f8f9fa;
    padding: 80px 0;
    min-height: 600px;
    height: auto;
}

.products-right-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    height: auto;
    overflow: visible;
}

.products-left {
    display: flex;
    align-items: center;
}

.products-left-content {
    padding: 20px;
    max-width: 98%;
}

.products-left-content h2 {
    color: #0088CC;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.products-left-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.products-right-column {
    position: relative;
    overflow: visible;
}

.products-right-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Products Left Section */
.products-left-alt {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: white;
    padding: 80px 0;
    min-height: 600px;
    height: auto;
}

.products-left-alt-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 400px;
    height: auto;
    overflow: visible;
}

.products-left-alt-column {
    position: relative;
    overflow: visible;
}

.products-left-alt-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.products-right-alt {
    display: flex;
    align-items: center;
}

.products-right-alt-content {
    padding: 20px 20px 20px 60px;
    max-width: 98%;
}

.products-right-alt-content h2 {
    color: #0088CC;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.products-right-alt-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Accordion Styles */
.accordion {
    margin: 2rem 0;
}

.accordion-item {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0.5rem;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    color: #0088CC;
}

.accordion-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #333;
    transition: color 0.3s ease;
}

.accordion-header:hover h3 {
    color: #0088CC;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #0088CC;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 136, 204, 0.1);
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    background: #0088CC;
    color: white;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding-bottom: 1rem;
}

.accordion-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Oil Types List */
.oil-types {
    list-style: none;
    padding: 0 0 50px 0;
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.1rem 1.5rem;
}

.oil-types li {
    color: #666;
    padding: 0.1rem 0;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    position: relative;
}

.oil-types li:before {
    content: "•";
    color: #0088CC;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact {
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2, .contact-form h2 {
    color: #0088CC;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: #0088CC;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.contact-item h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0088CC;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545;
}

.form-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    text-align: center;
}

.form-success i,
.form-error i {
    margin-right: 0.5rem;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    text-align: center;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #0088CC;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.team-member,
.product-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-card.animate-in,
.team-member.animate-in,
.product-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        width: 100%;
        padding: 1.5rem;
        border-bottom: 1px solid #f0f0f0;
    }

    /* Mobile Dropdown */
    .has-dropdown > a {
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.3s ease;
    }

    .has-dropdown.active .dropdown-menu {
        max-height: 200px;
    }

    .dropdown-menu a {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .home-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .home-text h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .conoce-content {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .products-right-container,
    .products-left-alt-container {
        grid-template-columns: 1fr;
    }

    .products-left-alt {
        padding: 40px 0;
    }

    .products-right {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .tagline {
        font-size: 1.2rem;
    }

    .home-text h1 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .cta {
        padding: 40px 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* RTL Support for future Arabic */
[dir="rtl"] .nav-menu {
    direction: rtl;
}

[dir="rtl"] .home-content {
    direction: rtl;
}

[dir="rtl"] .about-content {
    direction: rtl;
}

[dir="rtl"] .contact-content {
    direction: rtl;
}

[dir="rtl"] .footer-content {
    direction: rtl;
}

/* Print Styles */
@media print {
    .navbar,
    .top-header,
    .cta,
    .footer {
        display: none;
    }

    .section {
        padding: 20px 0;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    h1, h2, h3 {
        page-break-after: avoid;
    }

    img {
        max-width: 100% !important;
    }
}

/* Contact Form Section */
.contact-form-section {
    background: #ffffff;
    padding: 100px 0;
    color: #2c3e50;
    position: relative;
    overflow: hidden;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-section h2.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1.5rem;
}

.contact-form-section h2.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #3498db;
    border-radius: 2px;
}

.contact-subtitle {
    color: #666;
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.contact-form-wrapper {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px 2rem;
    gap: 20px 0;
}

.form-group {
    flex: 1;
    min-width: 250px;
    padding: 0 15px;
    position: relative;
}

.form-group.full-width {
    flex: 0 0 100%;
    max-width: 100%;
}

.phone-group {
    display: flex;
    gap: 15px;
    width: 100%;
}

.phone-prefix {
    flex: 0 0 120px;
}

.phone-number {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group label i {
    margin-right: 8px;
    color: #3498db;
}

.phone-input-group {
    display: flex;
    gap: 10px;
}

.phone-prefix-input {
    flex: 0 0 90px;
    text-align: center;
}

.phone-number-input {
    flex: 1;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    background: #ffffff;
    transition: all 0.3s ease;
    color: #2c3e50;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #adb5bd;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1), 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.6;
}

.form-submit {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-submit {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border: none;
    color: #ffffff;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9 0%, #1f6391 100%);
}

.btn-submit i {
    font-size: 1rem;
}

.form-privacy {
    text-align: center;
    margin-top: 1.5rem;
    color: #868e96;
    font-size: 0.9rem;
}

.form-privacy i {
    margin-right: 6px;
    color: #3498db;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Efecto de ondas decorativas */
.wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512,53.82,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23f8f9fa" opacity=".05"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,141.56,70.17,13.5,22.5,19.7,47.71,19.7,74.18V0Z" fill="%23f8f9fa" opacity=".1"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23f8f9fa" opacity=".15"/></svg>');
    background-size: 100% 100%;
    z-index: 1;
    pointer-events: none;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-section h2.section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .contact-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        border-radius: 16px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .phone-input-group {
        flex-direction: row;
    }

    .phone-prefix-input {
        flex: 0 0 80px;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .phone-group {
        flex-direction: column;
        gap: 1.5rem;
    }

    .phone-prefix,
    .phone-number {
        width: 100%;
    }

    .btn-primary {
        width: 100%;
        padding: 16px 20px;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #fff;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: #0088CC;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    width: 20px;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-form h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0088CC;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .phone-group {
    display: flex;
    gap: 1rem;
}

.contact-form .phone-prefix {
    flex: 0 0 100px;
}

.contact-form .phone-number {
    flex: 1;
}

.btn-primary {
    background: #0088CC;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background: #0077b3;
}

.working-hours {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.working-hours h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.working-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.working-hours li {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form .phone-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-form .phone-prefix,
    .contact-form .phone-number {
        width: 100%;
    }
}

/* Product Catalog Page Styles */
.product-intro {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.product-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.product-intro h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-intro p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.products-grid-section {
    padding: 80px 0;
    background: #ffffff;
}

.products-catalog {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.products-catalog .product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    opacity: 1;
    transform: none;
}

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

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px 30px 30px;
}

.product-info h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.product-features span {
    background: #e8f4fc;
    color: #0088CC;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.product-features span i {
    margin-right: 5px;
    color: #27ae60;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid #0088CC;
    color: #0088CC;
    background: transparent;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #0088CC;
    color: white;
}

.btn-outline i {
    font-size: 1.1rem;
}

.product-docs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-docs .btn-outline {
    padding: 10px 16px;
    font-size: 0.9rem;
}

/* Product Catalog Responsive */
@media (max-width: 992px) {
    .products-catalog {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .product-intro {
        padding: 40px 0;
    }

    .product-intro h2 {
        font-size: 1.6rem;
    }

    .products-grid-section {
        padding: 50px 0;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 20px;
    }

    .product-info h3 {
        font-size: 1.2rem;
    }

    .product-features {
        gap: 8px;
    }

    .product-features span {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

/* Contact Page Styles */
.contact-page {
    padding: 80px 0;
    background: #ffffff;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.contact-form-column h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.contact-intro {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-page-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-page-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.contact-page-form input,
.contact-page-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
    outline: none;
    border-color: #3498db;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.contact-page-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-page-form .btn-primary {
    background: #3498db;
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-page-form .btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.form-messages {
    margin-top: 1.5rem;
}

.success-message {
    color: #27ae60;
    font-weight: 500;
}

.success-message i {
    margin-right: 8px;
}

.error-message {
    color: #e74c3c;
    font-weight: 500;
}

.error-message i {
    margin-right: 8px;
}

/* Info Column */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.info-box h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #3498db;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.25rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: #3498db;
    font-size: 1.1rem;
    margin-top: 3px;
    width: 20px;
}

.info-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.info-item a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #3498db;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    color: #555;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span:first-child {
    font-weight: 500;
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-column {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-box {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 600px) {
    .contact-page {
        padding: 50px 0;
    }

    .contact-form-column h2 {
        font-size: 1.75rem;
    }

    .contact-info-column {
        flex-direction: column;
    }

    .info-box {
        min-width: 100%;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 60px 0;
    background: #ffffff;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
}

.legal-text h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 1.5rem 0 0.75rem;
}

.legal-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-text ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: #555;
}

.legal-text ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #e9ecef;
}

.cookies-table th {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
}

.cookies-table td {
    color: #555;
}

.cookies-config-button {
    margin-top: 2rem;
    text-align: center;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    display: block;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: #3498db;
    color: white;
}

.cookie-btn-accept:hover {
    background: #2980b9;
}

.cookie-btn-config {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn-config:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-reject {
    background: transparent;
    color: #aaa;
    border: 1px solid #aaa;
}

.cookie-btn-reject:hover {
    color: white;
    border-color: white;
}

/* Cookie Config Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.cookie-modal-header h3 {
    margin: 0;
    color: #2c3e50;
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-info h4 {
    margin: 0 0 5px;
    color: #2c3e50;
    font-size: 1rem;
}

.cookie-option-info p {
    margin: 0;
    color: #666;
    font-size: 0.85rem;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

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

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

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

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #3498db;
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: #3498db;
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    text-align: right;
}

.cookie-modal-footer .cookie-btn {
    margin-left: 10px;
}

/* Form Consent Checkboxes */
.form-consent {
    margin: 1.5rem 0;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
}

.consent-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.consent-checkbox label {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    cursor: pointer;
}

.consent-checkbox label a {
    color: #3498db;
    text-decoration: underline;
}

.consent-checkbox.required label::after {
    content: " *";
    color: #e74c3c;
}

/* Footer Legal Links */
.footer-legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-buttons {
        justify-content: center;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 100px;
    }
}

/* Ajustar el margen superior del footer para que esté pegado a la sección de contacto */
.footer {
    margin-top: 0 !important;
}
