/*
Theme Name: MindShift Empresarial
Theme URI: https://mindshiftempresarial.com.br
Author: MindShift Empresarial
Author URI: https://mindshiftempresarial.com.br
Description: Tema profissional para consultoria empresarial MindShift. Design moderno, responsivo e otimizado para conversão.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mindshift
Tags: business, consultoria, one-column, custom-menu, featured-images, threaded-comments

MindShift Empresarial - Do Caos à Clareza. Organize o Crescimento.
*/

/* ========== VARIÁVEIS CSS ========== */
:root {
    --primary: #400067;
    --primary-dark: #3D1A5C;
    --secondary: #F5A623;
    --green: #86bc39;
    --cyan: #24a7ce;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --dark: #2D2D2D;
    --gradient-primary: linear-gradient(135deg, #5B2D8C, #3D1A5C);
    --gradient-secondary: linear-gradient(135deg, #F5A623, #E09000);
    --shadow: 0 10px 40px rgba(91, 45, 140, 0.15);
    --shadow-hover: 0 20px 60px rgba(91, 45, 140, 0.25);
}

/* ========== RESET E BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

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

ul, ol {
    list-style: none;
}

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

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.cta-header {
    background: var(--gradient-secondary);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.4);
    color: white;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
    background: none;
    border: none;
}

/* ========== BOTÕES ========== */
.btn-primary {
    background: var(--gradient-secondary);
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 166, 35, 0.4);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-icon {
    width: 6px;
    height: auto;
}

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

.btn-secondary.white {
    color: white;
    border-color: rgba(255,255,255,0.5);
}

.btn-secondary.white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}



/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-hover);
    position: relative;
}

.hero-card h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 20px;
}

.pain-list {
    list-style: none;
}

.pain-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--gray);
}

.pain-list li i {
    color: var(--secondary);
    margin-top: 4px;
}

.floating-badge {
    position: absolute;
    background: var(--green);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(139, 195, 74, 0.4);
}

.floating-badge.top {
    top: -20px;
    right: -20px;
}

.floating-badge.bottom {
    bottom: -20px;
    left: -20px;
    background: var(--cyan);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.4);
}

/* ========== PAGE HERO (Páginas Internas) ========== */
.page-hero {
    background: var(--gradient-primary);
    padding: 150px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== SEÇÕES ========== */
.section {
    padding: 100px 0;
}

.section.gray {
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
}

/* ========== CARDS ========== */
.card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 32px;
    color: white;
}

.card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 15px;
}

.card p {
    color: var(--gray);
    font-size: 15px;
}

/* ========== GRID ========== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ========== SERVIÇOS CARDS ========== */
.servico-card {
    padding: 40px 30px;
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.servico-card.estrategia {
    background: linear-gradient(#ED622B);
}

.servico-card.processos {
    background: linear-gradient(135deg, #8BC34A, #689F38);
}

.servico-card.pessoas {
    background: linear-gradient(135deg, #00BCD4, #0097A7);
}

.servico-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.servico-card-icon i {
    font-size: 28px;
    color: white;
}

.servico-card h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.servico-card .tagline {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.servico-card h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.servico-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.servico-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.servico-card ul li i {
    font-size: 12px;
}

.servico-card .meta {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 13px;
}

.servico-card .meta strong {
    font-weight: 700;
}

/* ========== RESULTADOS ========== */
.resultado-card {
    background: var(--primary);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.resultado-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.resultado-card-icon i {
    font-size: 24px;
    color: var(--secondary);
}

.resultado-card .numero {
    font-size: 48px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.resultado-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* ========== DEPOIMENTOS ========== */
.depoimento-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.depoimento-card .quote {
    font-size: 16px;
    font-style: italic;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.depoimento-card .quote::before {
    content: '"';
    font-size: 60px;
    color: var(--secondary);
    font-family: Georgia, serif;
    line-height: 0;
    display: block;
    margin-bottom: 10px;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 15px;
}

.depoimento-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.depoimento-info h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 3px;
}

.depoimento-info p {
    font-size: 13px;
    color: var(--gray);
}

/* ========== SOBRE ========== */
.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.sobre-image {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.sobre-image .icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.sobre-image .icon i {
    font-size: 48px;
    color: var(--secondary);
}

.sobre-image h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.sobre-image p {
    opacity: 0.9;
}

.sobre-text h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.sobre-text h2 span {
    color: var(--secondary);
}

.sobre-text p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.sobre-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.sobre-stat {
    text-align: center;
}

.sobre-stat .numero {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Montserrat';
}

.sobre-stat p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.cta-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.cta-badge i {
    color: var(--green);
}

/* ========== CONTATO ========== */
.contato-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contato-info h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.contato-info > p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 16px;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contato-item-icon {
    width: 50px;
    height: 50px;
    background: #400067;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-item-icon i {
    font-size: 20px;
    color: var(--primary);
}

.contato-item h4 {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 5px;
}

.contato-item a,
.contato-item p {
    font-size: 16px;
    color: var(--dark);
    font-weight: 600;
}

.contato-item a:hover {
    color: var(--primary);
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(91, 45, 140, 0.3);
}

/* ========== FORMULÁRIO ========== */
.form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-card h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E8E8E8;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(91, 45, 140, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    width: 100%;
    background: var(--gradient-secondary);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 166, 35, 0.4);
}

/* ========== FAQ ========== */
.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
}

/* ========== BLOG/INSIGHTS ========== */
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.blog-card-image {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-image i {
    font-size: 48px;
    color: rgba(255,255,255,0.3);
}

.blog-card-content {
    padding: 25px;
}

.blog-card-category {
    display: inline-block;
    background: rgba(91, 45, 140, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-card h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gray);
}

.blog-card-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card-link:hover {
    color: var(--secondary);
}

/* ========== FOOTER ========== */
/* FOOTER FULL WIDTH REAL */
.footer {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    padding: 90px 40px 30px;
}

/* GRID PRINCIPAL */
.footer-inner {
    max-width: 1200px;       /* usa a tela, mas não exagera */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    align-items: flex-start;
}

/* LOGO */
.footer-logo {
    width: 220px;            /* 👈 logo visível e com presença */
    margin-bottom: 28px;
    display: block;
	align-items: center;
}

/* TEXTO PRINCIPAL */
.footer-text-main {
	text-align: center;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,0.9);
}

/* TEXTO SECUNDÁRIO */
.footer-text-secondary {
	text-align: center;
    font-size: 15px;
    line-height: 2;
    color: rgba(255,255,255,0.75);
}

/* COPY */
.footer-bottom {
	text-align: center;
    margin-top: 70px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-bottom p {
	text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer {
        padding: 60px 24px 30px;
    }

    .footer-logo {
        width: 180px;
    }
}



/* ========== WHATSAPP FLUTUANTE ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

/* ========== RESPONSIVO ========== */
@media (max-width: 992px) {
    .hero-content,
    .sobre-content,
    .contato-content {
        grid-template-columns: 1fr;
    }
    
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .cta-header {
        display: none;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .sobre-stats {
        justify-content: center;
    }
    
    .cta-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-card {
        padding: 25px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 14px;
    }
}
