/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e91e63;
    --secondary-color: #9c27b0;
    --text-color: #333;
    --light-bg: #f8f8f8;
    --white: #fff;
    --dark-bg: #222;
    --container-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header styles */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo img {
    display: block;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-color);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.whatsapp-button a {
    background-color: #25d366;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.whatsapp-icon {
    margin-right: 5px;
}

/* Hero section */
.hero {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Categorias section */
.categorias {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.categorias h2 {
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.categorias > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

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

.categoria-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.categoria-item h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.cta-secondary {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
}

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

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

.entrega h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

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

.beneficio h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Depoimentos section */
.depoimentos {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.depoimentos h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.depoimentos-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 20px 0;
}

.depoimento-item {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 280px;
}

.depoimento-item p {
    font-style: italic;
    margin-bottom: 15px;
}

.cliente {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
}

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

.contato h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contato-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-col h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    margin-top: 30px;
}

.info-col h3:first-child {
    margin-top: 0;
}

.mapa {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

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

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

.footer-logo p {
    margin-top: 15px;
    opacity: 0.8;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-icons a {
    opacity: 0.8;
}

.social-icons a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive styles */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .contato-info {
        grid-template-columns: 1fr;
    }
    
    .depoimento-item {
        flex: 0 0 calc(100% - 40px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
        flex-direction: row;
    }
    
    .social-icons a {
        margin: 0 10px;
    }
}
