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

:root {
    --cor-vermelho: #E31E24;
    --cor-amarelo: #FFD700;
    --cor-branco: #FFFFFF;
    --cor-cinza-claro: #F5F5F5;
    --cor-cinza-escuro: #333333;
    --cor-texto: #2C2C2C;
    --gradiente-principal: linear-gradient(135deg, var(--cor-vermelho) 0%, #C41E1E 100%);
    --gradiente-secundario: linear-gradient(135deg, var(--cor-amarelo) 0%, #FFA500 100%);
    --gradiente-verde: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    --sombra-suave: 0 4px 6px rgba(0, 0, 0, 0.1);
    --sombra-media: 0 8px 16px rgba(0, 0, 0, 0.15);
    --sombra-forte: 0 12px 24px rgba(0, 0, 0, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--cor-texto);
    background-color: var(--cor-branco);
}

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

/* Header */
.header {
    background: var(--gradiente-principal);
    padding: 20px 0;
    box-shadow: var(--sombra-media);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    text-decoration: none;
}

.logo-text {
    color: var(--cor-branco);
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.logo-text:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.8) 0%, rgba(195, 207, 226, 0.8) 100%),
                rgba(0, 0, 0, 0.8);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    color: var(--cor-vermelho);
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--cor-cinza-escuro);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--sombra-suave);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradiente-verde);
    color: var(--cor-branco);
}

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

.btn-secondary {
    background: var(--gradiente-principal);
    color: var(--cor-branco);
}

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

.btn-accent {
    background: var(--gradiente-secundario);
    color: var(--cor-cinza-escuro);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--sombra-forte);
}

.emoji {
    font-size: 1.4rem;
}

/* Main Content */
.main-content {
    padding: 60px 0;
    background-color: var(--cor-branco);
}

.content-article h2 {
    font-size: 2.2rem;
    color: var(--cor-vermelho);
    margin: 40px 0 20px 0;
    font-weight: 700;
    line-height: 1.3;
}

.content-article h3 {
    font-size: 1.6rem;
    color: var(--cor-vermelho);
    margin: 30px 0 15px 0;
    font-weight: 600;
    line-height: 1.4;
}

.content-article p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cor-texto);
    margin-bottom: 20px;
    text-align: justify;
}

.content-article ul {
    margin: 20px 0;
    padding-left: 20px;
}

.content-article li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cor-texto);
    margin-bottom: 10px;
    position: relative;
}

.content-article li::before {
    content: "✓";
    color: var(--cor-vermelho);
    font-weight: bold;
    position: absolute;
    left: -20px;
    top: 0;
}

.content-article strong {
    color: var(--cor-vermelho);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 50px 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--sombra-suave);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button.primary.large {
    background: var(--gradiente-verde);
    color: var(--cor-branco);
}

.cta-button.primary.large:hover {
    transform: translateY(-3px);
    box-shadow: var(--sombra-forte);
}

.cta-icon {
    font-size: 1.5rem;
}

/* GBP Embed */
.gbp-embed {
    margin: 40px 0;
    text-align: center;
}

.gbp-embed iframe {
    width: 100%;
    max-width: 600px;
    height: 450px;
    border: none;
    border-radius: 15px;
    box-shadow: var(--sombra-media);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--cor-branco);
}

.service-item {
    background: var(--cor-cinza-claro);
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 20px;
    box-shadow: var(--sombra-suave);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-media);
}

.service-title {
    font-size: 2rem;
    color: var(--cor-vermelho);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cor-texto);
    margin-bottom: 20px;
    text-align: justify;
}

.cta-inline {
    text-align: center;
    margin-top: 30px;
}

.btn-inline {
    display: inline-block;
    padding: 14px 28px;
    background: var(--gradiente-verde);
    color: var(--cor-branco);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: var(--sombra-suave);
}

.btn-inline:hover {
    transform: translateY(-2px);
    box-shadow: var(--sombra-media);
}

/* Map Container */
.map-container {
    margin: 60px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sombra-media);
}

.map-container iframe {
    display: block;
}

/* Footer */
.footer {
    background: var(--gradiente-principal);
    color: var(--cor-branco);
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-column p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-link {
    color: var(--cor-amarelo);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--cor-branco);
    text-decoration: underline;
}

.footer-column a[target="_blank"] {
    color: var(--cor-amarelo);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a[target="_blank"]:hover {
    color: var(--cor-branco);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: var(--gradiente-verde);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sombra-forte);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 2.5rem;
}

