/* Variáveis de cores da marca Rafael Rufino Consórcios */
:root {
    --primary-color: #1e3a8a;      /* Azul escuro da marca */
    --secondary-color: #dc2626;    /* Vermelho vibrante da marca */
    --accent-color: #ef4444;       /* Vermelho mais claro */
    --text-dark: #1e3a8a;          /* Texto escuro */
    --text-light: #64748b;         /* Texto cinza */
    --background-light: #f8fafc;   /* Fundo claro */
    --white: #FBFAFA;              /* Branco suave */
    --shadow: rgba(30, 58, 138, 0.1); /* Sombra azul suave */
}

/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Otimizações de performance */
body {
    transform: translateZ(0); /* Force hardware acceleration */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Superior */
.top-header {
    background-color: #DC143C;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-links {
    display: flex;
    gap: 20px;
}

.top-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s;
}

.top-link:hover {
    opacity: 0.8;
}

.user-greeting {
    font-weight: bold;
}

/* Header Principal */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

/* Seção Hero */
.hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-color), #e74c3c);
    will-change: transform;
    transform: translateZ(0); /* Force hardware acceleration */
}

.hero-container {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
    position: relative;
}

.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    text-align: center;
}


.hero-main {
    margin-bottom: 40px;
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}


.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-line-1 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.logo-line-2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
}

.logo-image {
    display: flex;
    align-items: center;
}

.logo-image img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: white;
    margin-bottom: 25px;
}

.hero-message h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.hero-message p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-cta-center {
    text-align: center;
    margin-top: 20px;
}

.hero-cta-center .hero-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    text-decoration: none;
}

.hero-cta-center .hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6);
    background: linear-gradient(135deg, #ff2d5a, var(--secondary-color));
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.hero-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.hero-button.primary {
    background: linear-gradient(45deg, #fff, #f8f9fa);
    color: var(--secondary-color);
}

.hero-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #f8f9fa, #fff);
}

.hero-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-button.secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(255,255,255,0.2);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 5px;
    font-variant-numeric: tabular-nums; /* Números com largura fixa */
    letter-spacing: 1px; /* Espaçamento consistente */
}

.stat-label {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-floating-button {
    position: absolute;
    bottom: 60px;
    right: 30px;
    z-index: 3;
}

.hero-button.floating {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--secondary-color);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: float 3s ease-in-out infinite;
    will-change: transform;
}

.hero-button.floating:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}



.hero-background {
    background: linear-gradient(135deg, #DC143C 0%, #FF69B4 100%);
    position: relative;
    height: 100%;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://via.placeholder.com/1920x600/CCCCCC/FFFFFF?text=Cozinha+Modern');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 30px;
}

.hero-content .container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: center;
}

.hero-text {
    text-align: left;
    max-width: 600px;
}

.hero-text h1 {
    font-family: 'Oswald', 'Impact', 'Arial Black', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.6);
    letter-spacing: 3px;
}

.hero-text .highlight {
    color: var(--secondary-color);
    background-color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
}

.hero-text p {
    font-family: 'Roboto Condensed', 'Arial', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

/* Seção CTA Representantes */
.representatives-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    position: relative;
    overflow: hidden;
}

.representatives-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FBFAFA" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23FBFAFA" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23FBFAFA" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23FBFAFA" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23FBFAFA" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.representatives-card {
    background: rgba(251, 250, 250, 0.95);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(251,250,250,0.3);
    position: relative;
    transform: translateY(0);
    transition: all 0.3s ease;
    max-width: 800px;
    margin: 0 auto;
}

.representatives-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.representatives-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    animation: pulse 2s infinite;
    will-change: transform;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.representatives-card h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.representatives-card p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--text-light);
    line-height: 1.6;
}

.representatives-button {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.representatives-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251,250,250,0.3), transparent);
    transition: left 0.5s;
}

.representatives-button:hover::before {
    left: 100%;
}

.representatives-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.6);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.representatives-button:active {
    transform: translateY(-1px);
}

/* Seção Credenciais dos Representantes */
.representatives-credentials {
    padding: 80px 0;
    background-color: var(--white);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.credential-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.credential-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.credential-item:hover::before {
    transform: translateX(100%);
}

.credential-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.3);
}

.credential-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.credential-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.credential-text {
    font-size: 1.1rem;
    line-height: 1.4;
    opacity: 0.95;
    font-weight: 500;
}

.credentials-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.credentials-text h3 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.credentials-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.certifications {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.certification-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background-color: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.certification-item:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.certification-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.certification-item:hover i {
    color: var(--white);
}

.victoria-card {
    background-color: rgba(0,0,0,0.8);
    padding: 30px;
    border-radius: 15px;
    color: white;
    backdrop-filter: blur(10px);
}

.victoria-icon {
    font-size: 2rem;
    color: #00CED1;
    margin-bottom: 20px;
}

.victoria-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.victoria-card p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.cta-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Seção Tipos de Consórcio */
.consortium-types {
    padding: 80px 0;
    background-color: var(--white);
}

.consortium-types h2 {
    font-size: 2.5rem;
    color: #DC143C;
    text-align: center;
    margin-bottom: 10px;
}

.consortium-types > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: var(--text-light);
}

.consortium-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.consortium-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.consortium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-image {
    margin-bottom: 20px;
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.card-icon {
    font-size: 2rem;
    color: #DC143C;
    margin-bottom: 15px;
}

.consortium-card h3 {
    font-size: 1.3rem;
    color: #DC143C;
    margin-bottom: 20px;
}

.consortium-card ul {
    list-style: none;
    text-align: left;
}

.consortium-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
}

.consortium-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #DC143C;
    font-weight: bold;
}

/* Seção Processo */
.process-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.process-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.highlight-text {
    color: var(--secondary-color);
    font-size: 3rem;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.step {
    text-align: center;
    flex: 1;
    max-width: 250px;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #00CED1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.process-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #00CED1;
    font-weight: bold;
}

.simulate-button {
    display: block;
    margin: 0 auto;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.simulate-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Seção Como Funciona */
.how-it-works {
    padding: 80px 0;
    background-color: var(--white);
}

.how-it-works h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.how-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.how-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.learn-more {
    color: #DC143C;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

.learn-more:hover {
    text-decoration: underline;
}

.how-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

/* Seção Vantagens */
.advantages {
    padding: 80px 0;
    background-color: var(--white);
}

.advantages h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.advantage-card {
    text-align: center;
}

.advantage-image {
    margin-bottom: 20px;
}

.advantage-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.advantage-category {
    color: #DC143C;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.advantage-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.advantage-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Seção Por Que Servopa */
.why-servopa {
    padding: 80px 0;
    background-color: #DC143C;
    color: white;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.why-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.why-text .highlight {
    background-color: var(--white);
    color: var(--secondary-color);
    padding: 5px 10px;
    border-radius: 5px;
}

.why-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.why-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums; /* Números com largura fixa */
    letter-spacing: 1px; /* Espaçamento consistente */
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Seção FAQ */
.faq {
    padding: 80px 0;
    background-color: var(--white);
}

.faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.faq > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto 40px;
}

.faq-item {
    background-color: #f8f9fa;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: var(--text-dark);
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
}

.more-questions {
    display: block;
    margin: 0 auto;
    background-color: #DC143C;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.more-questions:hover {
    background-color: #B22222;
    transform: translateY(-2px);
}

/* Seção Contato Especialista */
.expert-contact {
    padding: 80px 0;
    background-color: #DC143C;
    color: white;
}

.expert-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.expert-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.expert-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: white;
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #444;
}

.footer-logo img {
    height: 60px;
    width: auto;
    max-width: 250px;
    margin-bottom: 20px;
    object-fit: contain;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #444;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #DC143C;
}

.footer-contact h3 {
    color: #DC143C;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 20px;
}

.footer-apps h3 {
    color: #DC143C;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-button img {
    height: 40px;
    border-radius: 5px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #444;
}

.footer-column h4 {
    color: #DC143C;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-credibility {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #444;
}

.credibility-column h4 {
    color: #DC143C;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.credibility-logos,
.security-logos {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.credibility-logo,
.security-logo {
    background-color: #444;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    text-align: center;
}

.security-logo i {
    margin-right: 8px;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-logos span {
    background-color: #444;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.footer-bottom {
    background-color: #1a1a1a;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button-float {
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.whatsapp-button-float:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.whatsapp-button-float i {
    font-size: 1.2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .top-header .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-links {
        justify-content: center;
    }

    .main-header .container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        gap: 20px;
    }

    .hero-container {
        height: auto;
        padding: 40px 20px;
    }
    
    .hero-message h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-floating-button {
        position: absolute;
        bottom: 60px;
        right: 20px;
    }
    
    .hero-logo {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-image img {
        height: 50px;
    }
    
    .logo-line-1 {
        font-size: 1rem;
    }
    
    .logo-line-2 {
        font-size: 1.4rem;
    }

    .representatives-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .representatives-card h2 {
        font-size: 1.8rem;
    }
    
    .representatives-card p {
        font-size: 1rem;
    }
    
    .representatives-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .representatives-icon {
        font-size: 3rem;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .credential-item {
        padding: 25px 15px;
    }
    
    .credential-number {
        font-size: 2.5rem;
    }

    .credentials-text h3 {
        font-size: 1.8rem;
    }
    
    .credentials-text p {
        font-size: 1rem;
    }
    
    .certifications {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .certification-item {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .consortium-cards {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    .highlight-text {
        font-size: 2.5rem;
    }

    .how-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .why-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats {
        flex-direction: column;
        gap: 30px;
    }

    .expert-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-credibility {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .whatsapp-button-float span {
        display: none;
    }

    .whatsapp-button-float {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 25px 10px;
    }
    
    .hero-main {
        margin-bottom: 30px;
    }
    
    .hero-logo {
        margin-bottom: 20px;
        gap: 10px;
    }
    
    .logo-image img {
        height: 40px;
    }
    
    .logo-line-1 {
        font-size: 0.9rem;
    }
    
    .logo-line-2 {
        font-size: 1.2rem;
    }
    
    .hero-message h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .hero-message p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-cta-center {
        margin-top: 15px;
    }
    
    .hero-cta-center .hero-button {
        padding: 12px 20px;
        font-size: 0.9rem;
        gap: 8px;
    }

    .consortium-types h2,
    .process-section h2,
    .how-it-works h2,
    .advantages h2,
    .why-text h2,
    .faq h2,
    .expert-text h2 {
        font-size: 2rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .payment-logos {
        justify-content: center;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.consortium-card,
.advantage-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Melhorias de acessibilidade */
button:focus,
a:focus {
    outline: 2px solid #DC143C;
    outline-offset: 2px;
}

/* Loading states */
.cta-button:active,
.simulate-button:active,
.more-questions:active {
    transform: translateY(0);
}
