:root {
    --primary-color: #007acc;
    --secondary-color: #005c99;
    --text-color: #333;
    --bg-color: #f0f8ff;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

main {
    padding-top: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

section {
    padding: 1rem 1rem;
    margin: 1rem 0;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    padding: 1rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #007acc, #005c99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 50px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.search-btn {
    background: var(--primary-color);
    color: white;
}

.ticket-btn {
    background: #22c55e;
    color: white;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-btn:hover {
    background: var(--secondary-color);
}

.ticket-btn:hover {
    background: #16a34a;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link i {
    font-size: 1.5rem;
}

.contact-link:hover i {
    color: var(--secondary-color);
}


.contact-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.brand-link:hover {
    opacity: 0.9;
}

/* Benefits Section */
.benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fffefd;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 122, 204, 0.08);
    border: 1px solid rgba(0, 122, 204, 0.1);
}

.benefits-text {
    padding-right: 1rem;
}

.benefits-text ul {
    list-style: none;
    padding: 0;
}

.benefits-text li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-color);
}

.benefits-text li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.benefits-image {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.slide.active {
    opacity: 1;
}

/* Counters Section */
.counters-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.counter {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.counter-value {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Modules Carousel */
.modules-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.card-container {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 2rem;
    padding: 1rem 0;
}

.card {
    min-width: 280px;
    width: 280px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--primary-color);
    margin: 1rem 0;
    font-size: 1.2rem;
}

.card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-color);
    margin: 0;
    flex-grow: 1;
    overflow-wrap: break-word;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1;
}

.carousel-arrow:hover {
    background-color: var(--secondary-color);
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

.carousel-arrow i {
    font-size: 1.2rem;
}

/* Pricing Section */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    width: 300px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.pricing-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-top: 1.5rem;
    max-width: 800px;
    margin: 1.5rem auto 0;
}

.pricing-note a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.pricing-note a:hover {
    color: var(--secondary-color);
}

.period {
    font-size: 1rem;
    color: #666;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list i {
    color: #22c55e;
    font-size: 1rem;
}

.new-feature {
    position: relative;
    font-weight: 500;
}

.new-feature::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1.5rem;
    width: calc(100% - 1.5rem);
    height: 2px;
    background: #22c55e;
    opacity: 0.5;
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: var(--primary-color);
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    /* Add these properties for anchor tag */
    display: inline-block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.pricing-btn:hover {
    background: var(--secondary-color);
}

/* Comments Section */
.comments-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comment {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.comment:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.comment p:first-child {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 3rem;
    font-style: italic;
}

.comment p:last-child {
    color: var(--primary-color);
    font-weight: 600;
    position: absolute;
    bottom: 1.5rem;
    left: 2rem;
}

.comment::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
}

/* Inicio section */

.hero-intro {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-top: 1rem;
}

#about-us {
    padding: 3rem 2rem;
    background-color: var(--bg-color);
    text-align: center;
}

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

.hero-container {
    padding: 3rem 0;
}

.about-us-container {
    padding: 3rem 0;
    text-align: center;
    background-color: #fffefd;
    border-radius: 16px;
    border: 1px solid rgba(0, 92, 153, 0.1);
}

.hero-content {
    text-align: center;
}

.business-types {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dashboard-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
}

.business-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.business-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.business-type:hover {
    transform: translateY(-5px);
}

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

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    margin-top: 2rem;
    width: 100%;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.primary-btn {
    background: var(--primary-color);
    color: white;
    border: none;
}

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.primary-btn:hover, .secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Clients Carousel */
.carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 40px;
    animation: carousel 30s linear infinite;
    padding: 20px 0;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-track img {
    width: 150px;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.carousel-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0 1rem; /* Reduced top padding */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem; /* Reduced gap */
    margin-bottom: 1.5rem; /* Reduced margin */
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem; /* Reduced margin */
    font-weight: 600;
}

.footer-section p {
    line-height: 1.4; /* Reduced line height */
}

.footer-section a {
    margin-bottom: 0.4rem; /* Reduced margin */
}

.footer-section a:hover {
    opacity: 0.8;
}

.footer-section i {
    margin-right: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.8rem; /* Reduced padding */
    font-size: 0.85rem;
}


/* Animations */
@keyframes carousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Media Queries */
@media (max-width: 768px) {
    main {
        padding-top: 70px;
        padding: 0 1rem;
    }

    section {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .benefits-container {
        padding: 1.5rem;
        border-radius: 12px;
        grid-template-columns: 1fr;
    }

    .benefits-text {
        padding-right: 0;
    }

    .benefits-text li {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .benefits-image {
        order: -1;
    }

    .counters-container,
    .card-container,
    .comments-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .counter {
        padding: 1.5rem;
    }

    .counter-value {
        font-size: 2.5rem;
    }

    .header-right i {
        margin-left: 1em;
        font-size: 1.2em;
    }

    .header-right {
        display: none;
    }

    .header-buttons {
        display: none;
    }

    .company-name {
        font-size: 1.5rem;
    }

    .logo {
        height: 40px;
    }

    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card.popular {
        transform: none;
    }

    .hero-container {
        padding: 2rem 1rem;
    }

    .dashboard-container {
        padding: 0 1rem;
    }

    .dashboard-image {
        border-radius: 10px;
    }

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

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

    .business-types {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .business-type {
        padding: 0.8rem;
    }

    .business-type i {
        font-size: 1.2rem;
    }

    .business-type span {
        font-size: 0.9rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .primary-btn, .secondary-btn {
        padding: 0.8rem;
    }

    .hero-image {
        padding: 0 1rem;
    }

    .hero-image img {
        max-height: 300px;
        object-fit: contain;
    }
    
    .carousel-track img {
        width: 100px;
    }

    .modules-carousel {
        padding: 0 10px;
        width: 100%;
    }

    .card-container {
        padding: 1rem 0;
        scroll-snap-type: x mandatory;
    }

    .card {
        width: calc(100% - 20px);
        min-width: calc(100% - 20px);
        margin: 0 10px;
        scroll-snap-align: center;
    }

    .carousel-arrow {
        width: 30px;
        height: 30px;
    }

    .carousel-arrow.prev {
        left: 5px;
    }

    .carousel-arrow.next {
        right: 5px;
    }

    .card img {
        height: 180px; /* Adjusted height for mobile */
    }

    /* Benefits section adjustments */
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }

    .benefits-image {
        height: 300px; /* Adjusted height for mobile */
        width: 100%;
    }

    .slide {
        object-fit: contain; /* Changed to contain for full image */
        padding: 1rem;
    }

    /* Ensure proper spacing */
    section {
        padding: 2rem 1rem;
    }

    /* Center content */
    .benefits-text {
        padding-right: 0;
        text-align: left;
    }

    footer {
        padding: 1.5rem 0 0.8rem; /* Further reduced padding for mobile */
    }

    .footer-content {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .footer-section {
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.8rem;
    }

    .benefits-text li {
        font-size: 0.9rem;
    }

    .counter-value {
        font-size: 2rem;
    }

    .company-name {
        font-size: 1.2rem;
    }

    .logo {
        height: 35px;
    }
    .card {
        width: 90%;
        min-width: 90%;
        margin: 0 5%;
    }

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

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .business-types {
        gap: 0.8rem;
    }

    .business-type {
        padding: 0.6rem;
    }
}

/* Additional breakpoint for smaller phones */
@media (max-width: 414px) {
    .card-container {
        padding: 1rem 0;
    }

    .card {
        min-width: calc(100vw - 20px);
        width: calc(100vw - 20px);
        margin: 0 10px;
    }

    .benefits-image {
        height: 250px;
    }
}

@media (max-width: 390px) {
    .modules-carousel {
        padding: 0 5px;
    }

    .card {
        width: 85%;
        min-width: 85%;
        margin: 0 7.5%;
    }

    .card img {
        height: 160px;
    }

    .carousel-arrow {
        width: 25px;
        height: 25px;
    }

    .carousel-arrow.prev {
        left: 2px;
    }

    .carousel-arrow.next {
        right: 2px;
    }

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

    .hero-container {
        padding: 1.5rem 0.8rem;
    }

    .business-types {
        grid-template-columns: 1fr;
    }
}



/* Form Styles */
.form-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

label {
    font-weight: 500;
    color: var(--text-color);
}

input, select, textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: var(--secondary-color);
}

@media (max-width: 768px) {
    .form-container {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}


/* ESTILOS DE RESTAURANTES */

/* Restaurant Features Styles */
.feature-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.feature-container.reverse {
    direction: rtl;
}

.feature-container.reverse .feature-content {
    direction: ltr;
}

.feature-content {
    padding: 2rem;
}

.feature-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.feature-image {
    width: 100%;
    height: auto; /* Allow height to adjust based on image aspect ratio */
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image img {
    max-width: 100%;
    max-height: 300px; /* Limit the height to avoid excessive size */
    object-fit: contain; /* Ensure the image is fully visible */
    transition: transform 0.3s ease;
}

.hidden-features {
    display: none;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hidden-features.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.show-features-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-features-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 122, 204, 0.2);
}

.show-features-btn i {
    transition: transform 0.3s ease;
}

.show-features-btn.active i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .feature-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .feature-container.reverse {
        direction: ltr;
    }

    .feature-image {
        height: 300px;
    }

    .feature-content {
        padding: 1rem;
    }

    .feature-content h3 {
        font-size: 1.5rem;
    }

    .feature-content p {
        font-size: 1rem;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    right: 25px;
    top: 10px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.feature-image img {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.feature-image img:hover {
    opacity: 0.9;
}

/* Animation */
@keyframes zoomIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content {
    animation: zoomIn 0.3s ease-in-out;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.benefit-item p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }

    .benefit-item {
        padding: 1.5rem;
    }
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    margin-top: 1rem;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    background: #1EBE57;
}

#tutorials {
    padding: 3rem 2rem;
    background-color: var(--bg-color);
    text-align: center;
}

.tutorials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tutorial {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 560px;
}

.tutorial iframe {
    width: 100%;
    height: 315px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tutorial h3 {
    font-size: 1rem;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .tutorial iframe {
        height: 200px;
    }
}