:root {
  --primary-red: #E53E3E;
  --secondary-green: #48BB78;
  --accent-gold: #ECC94B;
  --neutral-dark: #2D3748;
  --neutral-medium: #718096;
  --neutral-light: #F7FAFC;
  --white: #FFFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wave-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.wave-shape .shape-fill {
    fill: var(--neutral-light); /* Changed from #FFFFFF */
}

.product-card {
    transition: all 0.3s ease;
}

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

.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }   
}


.que-es2 {
    padding: 40px 0;
    background-color: #ffffff; /* Assuming a white background for this section */
    color: #333; /* Default text color */
}
.que-es2 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.que-es2 .content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}
.que-es2 .left-panel {
    flex: 1; /* Takes up available space */
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #ffffff    ; /* Red background for the left panel */
    color: #000000; /* White text */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.que-es2 .left-panel .tech-image {
    width: 120px; /* Adjusted size */
    height: 120px; /* Adjusted size */
    object-fit: contain; /* Ensure aspect ratio is maintained */
    flex-shrink: 0; /* Prevent image from shrinking */
}
.que-es2 .left-panel .text-content {
    flex-grow: 1;
    text-align: left;
    font-size: 0.95rem;
}
.que-es2 .left-panel .text-content p {
    margin-bottom: 15px;
}
.que-es2 .right-panel {
    flex: 1; /* Takes up available space */
    text-align: left;
}
.que-es2 .right-panel h2 {
    font-size: 2.2rem;
    color: #E53E3E; /* Red for the title */
    margin-bottom: 15px;
    text-align: center;
}
.que-es2 .right-panel p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333; /* Dark text color */
}
.que-es2 .right-panel .patch-image {
    width: 100%;
    max-width: 350px; /* Adjusted size */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Crop to fit while maintaining aspect ratio */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    max-height: 150px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .que-es2 .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .que-es2 .left-panel {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
    }
    .que-es2 .left-panel .tech-image {
        margin-bottom: 20px;
    }
    .que-es2 .right-panel {
        text-align: center;
    }
    .que-es2 .right-panel h2 {
        margin-left: auto;
        margin-right: auto;
    }
    .que-es2 .right-panel .patch-image {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Section: Qué busca la gente */
.que-busca-la-gente {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 40px 20px;
    background-color: #fff; /* White background */
    text-align: center;
    gap: 40px; /* Spacing between columns */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.que-busca-la-gente .columna {
    flex: 1;
    min-width: 300px; /* Minimum width before wrapping */
    padding: 20px;
    background-color: white; /* White background for columns */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Consistent shadow */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the start (left) */
    margin-left: 5%; /* Indent columns */
}

.que-busca-la-gente .columna h3,
.que-busca-la-gente .columna h2 {
    font-size: 1.8rem; /* Standard heading size */
    font-weight: bold;
    margin-bottom: 20px;
    color: #003366; /* Dark blue for headings */
    text-align: center; /* Keep headings centered */
}

.que-busca-la-gente .columna h2 {
    font-size: 2.2rem; /* Larger for the main title */
}

.que-busca-la-gente .columna .item {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align items to the start (left) */
    margin-bottom: 15px;
    font-size: 1rem; /* Standard font size */
    color: #333; /* Dark gray for item text */
    width: 100%; /* Ensure item takes full width for centering */
}

.que-busca-la-gente .columna .item i {
    margin-right: 10px;
    color: #0077c2; /* Blue for icons */
    font-size: 1.2rem; /* Icon size */
}

/* Responsive adjustments for que-busca-la-gente */
@media (max-width: 768px) {
    .que-busca-la-gente {
        flex-direction: column;
        align-items: center;
        padding: 30px 15px; /* Adjust padding for mobile */
    }
    .que-busca-la-gente .columna {
        width: 90%; /* Adjust width for mobile */
        margin-bottom: 30px;
    }
    .que-busca-la-gente .columna h3,
    .que-busca-la-gente .columna h2 {
        font-size: 1.6rem; /* Smaller headings on mobile */
    }
    .que-busca-la-gente .columna .item {
        justify-content: center; /* Ensure items are centered */
    }
}
