:root {
    --google-blue-600: #1a73e8;
    --google-blue-700: #1557b0;
    --google-blue-50: #e8f0fe;
    --google-blue-100: #d2e3fc;
    --google-green-600: #137333;
    --google-grey-900: #202124;
    --google-grey-700: #3c4043;
    --google-grey-600: #5f6368;
    --google-grey-500: #9aa0a6;
    --google-grey-300: #dadce0;
    --google-grey-200: #e8eaed;
    --google-grey-100: #f1f3f4;
    --google-grey-50: #f8f9fa;
    --white: #ffffff;
    --elevation-1: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
    --elevation-2: 0 1px 3px 0 rgba(60,64,67,.3), 0 4px 8px 3px rgba(60,64,67,.15);
    --elevation-3: 0 4px 8px 3px rgba(60,64,67,.15), 0 1px 3px 0 rgba(60,64,67,.3);
    --elevation-4: 0 2px 6px 2px rgba(60,64,67,.15), 0 8px 24px 4px rgba(60,64,67,.15);
    --border-radius-small: 4px;
    --border-radius-medium: 8px;
    --border-radius-large: 12px;
    --border-radius-pill: 24px;
    --transition-standard: cubic-bezier(0.4, 0.0, 0.2, 1);
    --transition-decelerate: cubic-bezier(0.0, 0.0, 0.2, 1);
    --transition-accelerate: cubic-bezier(0.4, 0.0, 1, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Google Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.5;
    color: var(--google-grey-900);
    background-color: var(--white);
    font-size: 14px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.2px;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* Header */
header {
    background-color: var(--white);
    border-bottom: 1px solid var(--google-grey-200);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

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

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

.logo i {
    font-size: 24px;
    color: var(--google-blue-600);
    background: linear-gradient(135deg, var(--google-blue-600) 0%, var(--google-blue-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo h1 {
    font-size: 22px;
    font-weight: 500;
    color: var(--google-grey-900);
    letter-spacing: -0.25px;
    font-family: 'Google Sans', sans-serif;
    margin: 0;
}

nav {
    display: flex;
    align-items: center;
    gap: 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 4px;
    align-items: center;
    margin: 0;
}

nav ul li a {
    color: var(--google-grey-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: var(--border-radius-pill);
    transition: all 0.15s var(--transition-standard);
    display: flex;
    align-items: center;
    min-height: 36px;
}

nav ul li a:hover {
    background-color: var(--google-grey-100);
    color: var(--google-grey-900);
}

nav ul li a:active {
    background-color: var(--google-grey-200);
}

/* Hero Section */
.hero {
    background: var(--white);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8fbff 0%, #f3f8fe 25%, #eef4fd 50%, #e9f1fc 75%, #e4edfb 100%);
    opacity: 0.6;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="dots" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4a574" opacity="0.15"/></pattern></defs><rect width="100%25" height="100%25" fill="url(%23dots)"/><circle cx="900" cy="120" r="100" fill="%23f5e6a3" opacity="0.2"/><circle cx="1050" cy="250" r="80" fill="%23e8d5a6" opacity="0.25"/><circle cx="800" cy="350" r="120" fill="%23f0e2b6" opacity="0.18"/><path d="M 700 180 Q 780 120 860 180 Q 940 240 1020 180" stroke="%23d4a574" stroke-width="1.5" fill="none" opacity="0.2"/><path d="M 750 280 Q 830 220 910 280 Q 990 340 1070 280" stroke="%23c49963" stroke-width="1.5" fill="none" opacity="0.15"/></svg>');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 65% auto;
    opacity: 0.7;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 400px;
}

.hero-text {
    text-align: left;
}

.hero h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: var(--google-grey-900);
    font-family: 'Google Sans Display', 'Google Sans', sans-serif;
}

.hero p {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--google-grey-600);
    font-weight: 400;
    line-height: 1.5;
}

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

.hero-image svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 40px;
    }
    
    .hero p {
        font-size: 18px;
    }
}

.btn {
    background-color: var(--white);
    color: var(--google-blue-600);
    padding: 10px 24px;
    text-decoration: none;
    border-radius: var(--border-radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    box-shadow: var(--elevation-1);
    transition: all 0.15s var(--transition-standard);
    border: 1px solid var(--google-grey-300);
    cursor: pointer;
    letter-spacing: 0.25px;
    min-height: 36px;
    font-family: 'Google Sans', sans-serif;
}

.btn:hover {
    box-shadow: var(--elevation-2);
    border-color: var(--google-grey-400);
    background-color: var(--google-grey-50);
}

.btn:active {
    box-shadow: var(--elevation-1);
    transform: translateY(1px);
}

.btn-primary {
    background-color: var(--google-blue-600);
    color: var(--white);
    border: 1px solid var(--google-blue-600);
    box-shadow: none;
}

.btn-primary:hover {
    background-color: var(--google-blue-700);
    border-color: var(--google-blue-700);
    box-shadow: var(--elevation-1);
}

.btn-primary:active {
    background-color: var(--google-blue-800);
    box-shadow: none;
}

/* Planos */
.planos {
    padding: 80px 0 120px;
    background-color: var(--google-grey-50);
}

.planos h2 {
    text-align: center;
    margin-bottom: 16px;
    font-size: 40px;
    font-weight: 400;
    color: var(--google-grey-900);
    letter-spacing: -0.5px;
    font-family: 'Google Sans Display', sans-serif;
}

.planos .subtitle {
    text-align: center;
    margin-bottom: 64px;
    font-size: 18px;
    color: var(--google-grey-600);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.plano-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--border-radius-large);
    text-align: left;
    box-shadow: var(--elevation-1);
    border: 1px solid var(--google-grey-200);
    transition: all 0.2s var(--transition-standard);
    position: relative;
    display: flex;
    flex-direction: column;
}

.plano-card:hover {
    box-shadow: var(--elevation-3);
    transform: translateY(-2px);
}

.plano-card.featured {
    border: 2px solid var(--google-blue-600);
    box-shadow: var(--elevation-2);
    transform: scale(1.02);
}

.plano-card.featured::before {
    content: 'Mais Popular';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--google-blue-600);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--border-radius-pill);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'Google Sans', sans-serif;
}

.plano-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 500;
    color: var(--google-grey-900);
    font-family: 'Google Sans', sans-serif;
}

.plano-card .preco {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--google-grey-900);
    font-family: 'Google Sans Display', sans-serif;
}

.plano-card .preco::before {
    content: 'R$ ';
    font-size: 18px;
    font-weight: 400;
    color: var(--google-grey-600);
}

.plano-card .preco::after {
    content: '/mês';
    font-size: 14px;
    font-weight: 400;
    color: var(--google-grey-600);
}

.plano-card ul {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.plano-card ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: var(--google-grey-700);
    font-size: 14px;
    line-height: 1.4;
}

.plano-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--google-green-600);
    font-weight: 500;
    font-size: 16px;
}

/* Contato Section */
#contato {
    background-color: var(--white);
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--google-grey-200);
}

#contato h2 {
    color: var(--google-grey-900);
    margin-bottom: 16px;
    font-size: 32px;
    font-weight: 400;
    font-family: 'Google Sans Display', sans-serif;
}

#contato p {
    color: var(--google-grey-600);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 8px;
}

#contato p strong {
    color: var(--google-grey-900);
    font-weight: 500;
}

/* Footer */
footer {
    background-color: var(--google-grey-100);
    color: var(--google-grey-700);
    padding: 48px 0 24px;
    border-top: 1px solid var(--google-grey-200);
}

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

.footer-section h3 {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--google-grey-900);
    font-family: 'Google Sans', sans-serif;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--google-grey-600);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s var(--transition-standard);
}

.footer-section ul li a:hover {
    color: var(--google-blue-600);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--google-grey-200);
    padding-top: 24px;
    color: var(--google-grey-600);
    font-size: 14px;
}

/* Responsivo */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    header .container {
        flex-direction: column;
        gap: 16px;
    }
    
    nav ul {
        gap: 16px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .planos {
        padding: 60px 0;
    }
    
    .planos h2 {
        font-size: 28px;
    }
    
    .planos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .planos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .plano-card.featured {
        transform: none;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .planos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .plano-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    header .container {
        height: 56px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    nav ul {
        gap: 2px;
    }
    
    nav ul li a {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .planos {
        padding: 60px 0 80px;
    }
    
    .planos h2 {
        font-size: 32px;
    }
    
    .planos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .plano-card {
        padding: 20px;
    }
    
    #contato {
        padding: 60px 0;
    }
    
    #contato h2 {
        font-size: 28px;
    }
    
    footer {
        padding: 32px 0 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .planos h2 {
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-image svg {
        max-width: 300px;
    }
}
/* Features Sections */
.features-section {
    padding: 80px 0;
    background-color: var(--white);
}

.features-section.alt {
    background-color: var(--google-grey-50);
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.features-section.alt .feature-content {
    grid-template-columns: 1fr 1fr;
}

.feature-text h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--google-grey-900);
    font-family: 'Google Sans Display', sans-serif;
    letter-spacing: -0.25px;
}

.feature-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--google-grey-600);
    margin-bottom: 24px;
}

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

.feature-text ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--google-grey-700);
    font-size: 14px;
}

.feature-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--google-blue-600);
    font-weight: 500;
    font-size: 16px;
}

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

.feature-image svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .feature-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .features-section.alt .feature-content {
        grid-template-columns: 1fr;
    }
    
    .feature-text h3 {
        font-size: 28px;
    }
    
    .feature-image svg {
        max-width: 300px;
    }
}
/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--google-blue-600) 0%, var(--google-blue-700) 100%);
    color: var(--white);
    text-align: center;
}

.stats-section h3 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 60px;
    font-family: 'Google Sans Display', sans-serif;
    letter-spacing: -0.25px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 60px;
    height: 60px;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-number {
    font-size: 48px;
    font-weight: 400;
    font-family: 'Google Sans Display', sans-serif;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 400;
}

@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-section h3 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--elevation-3);
    z-index: 1000;
    transition: all 0.3s var(--transition-standard);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: var(--elevation-4);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 16px;
        right: 16px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
/* Fix para bug do footer */
html {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

footer {
    margin-top: auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo i {
    font-size: 24px;
    color: var(--google-blue-600);
}

.footer-logo h3 {
    margin: 0;
    font-size: 18px;
    color: var(--google-grey-900);
}

.footer-bottom a {
    color: var(--google-blue-600);
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.logo-img {
    max-height: 40px;
    width: auto;
    margin-right: 12px;
}

.footer-logo-img {
    max-height: 32px;
    width: auto;
    margin-right: 12px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-btn {
    background-color: var(--google-blue-600);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    border-radius: var(--border-radius-pill);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.15s var(--transition-standard);
    display: inline-flex;
    align-items: center;
    min-height: 36px;
}

.header-btn:hover {
    background-color: var(--google-blue-700);
    color: var(--white);
    text-decoration: none;
}

@media (max-width: 768px) {
    .header-btn {
        margin-left: 8px;
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* WordPress Pages */
.page-content, .single-post {
    padding: 80px 0;
    background-color: var(--white);
}

.page-content h1, .single-post h1 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 32px;
    color: var(--google-grey-900);
    font-family: 'Google Sans Display', sans-serif;
}

.post-meta {
    margin-bottom: 24px;
    color: var(--google-grey-600);
    font-size: 14px;
}

.post-meta span {
    margin-right: 16px;
}

.content {
    font-size: 16px;
    line-height: 1.6;
    color: var(--google-grey-700);
}

.content p {
    margin-bottom: 16px;
}

.content h2, .content h3, .content h4 {
    margin: 32px 0 16px;
    color: var(--google-grey-900);
    font-family: 'Google Sans', sans-serif;
}

.logo h1 a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 768px) {
    .page-content, .single-post {
        padding: 60px 0;
    }
    
    .page-content h1, .single-post h1 {
        font-size: 32px;
    }
}