* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fdf6f6;
    color: #333;
    line-height: 1.6;
}

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

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(252, 137, 135, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

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

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    color: #fc8987;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fc8987 0%, #57a2dc 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.app-button {
    max-width: 180px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.app-button img {
    height: auto;
    max-height: 60px;
    width: 100%;
    margin-right: 0;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #fc8987;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #fdf6f6;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(252, 137, 135, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    background-color: #ffeaea;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon img {
    width: 35px;
    height: 35px;
}

.feature-icon i {
    font-size: 24px;
    color: #fc8987;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #fc8987;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background-color: #fdf6f6;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(252, 137, 135, 0.1);
    transition: transform 0.3s ease;
}

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

.category-img {
    height: 200px;
    overflow: hidden;
    padding: 10px;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-info {
    padding: 20px;
    text-align: center;
}

.category-info h3 {
    color: #fc8987;
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonials-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background-color: #fdf6f6;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(252, 137, 135, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #fc8987 0%, #57a2dc 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #fc8987;
}

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

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

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fc8987;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #444;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #fc8987;
}

.social-links a i {
    font-size: 18px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #aaa;
}

.store-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

/* Estilos para os botões de download nas lojas */
.store-button {
    display: inline-block;
    width: 240px;  /* Aumentando a largura */
    margin: 10px;
    transition: transform 0.3s ease;
}

.store-button img {
    width: 100%;
    height: auto;
}

.store-button:hover {
    transform: scale(1.05);  /* Efeito de hover suave */
}

.app-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

/* Web Button Styles */
.web-button {
    background: linear-gradient(135deg, #57a2dc 0%, #fc8987 100%);
    border-radius: 12px;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    box-shadow: 0 4px 15px rgba(87, 162, 220, 0.3);
    transition: all 0.3s ease;
    max-width: 180px;
    width: 100%;
}

.web-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(87, 162, 220, 0.4);
    text-decoration: none;
    color: white;
}

.web-button-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.web-button-content i {
    font-size: 24px;
}

.web-button-content span {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* Font Awesome icon specific styling */
.fa-star {
    color: #FFD700;
}

.fa-tag {
    color: #28a745;
}

.fa-truck {
    color: #007bff;
}

.fa-shield-alt {
    color: #6f42c1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .app-buttons {
        justify-content: center;
    }

    .app-button {
        max-width: 200px;
    }

    .web-button {
        max-width: 200px;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .testimonial-card {
        flex: 0 0 260px;
    }

    .store-button {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-bottom: 15px;
        justify-content: center;
    }

    .hero {
        padding: 150px 0 60px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .app-button {
        max-width: 210px;
    }

    .web-button {
        max-width: 210px;
    }

    .feature-card,
    .category-card {
        padding: 20px;
    }

    .store-button {
        width: 210px;
    }
}