/* ========================================
   COTAFÁCIL - CUSTOM STYLES
   ======================================== */

/* Variáveis CSS */
:root {
    --primary-color: #003844;
    --secondary-color: #f08324;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --white-color: #ffffff;
    --border-color: #dee2e6;
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --font-family: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

/* ========================================
   ESTILOS GLOBAIS
   ======================================== */

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    scroll-behavior: smooth;
}

/* Cores Bootstrap personalizadas */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #002a33;
    border-color: #002a33;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background-color: #d96d1a;
    border-color: #d96d1a;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ========================================
   NAVBAR
   ======================================== */

#mainNavbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    padding: 1rem 0;
}

#mainNavbar.scrolled {
    background-color: var(--white-color);
    padding: 0.5rem 0;
}

.navbar-brand img {
    height: 40px;
    transition: var(--transition);
}

.navbar-collapse {
    justify-content: center;
    margin-left: 2rem;
}

.navbar-nav {
    margin: 0 auto;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
    left: 10%;
}

.btn-simular {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow);
}

.btn-simular:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   HERO SECTION
   ======================================== */
 

/* ========================================
   SEÇÕES GERAIS
   ======================================== */

section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    text-align: center;
}

/* ========================================
   SEÇÃO SOBRE ELEGANTE
   ======================================== */

.sobre-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.sobre-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.sobre-shape {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.05;
    border-radius: 50% 20% 50% 20%;
    transform: rotate(15deg);
}

.sobre-content {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
}

.sobre-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--secondary-color), #ffb366);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.sobre-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-color);
    line-height: 1.2;
}

.sobre-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.sobre-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.sobre-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-weight: 500;
    margin-top: 0.5rem;
}

.btn-elegante {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-elegante::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-elegante:hover::before {
    left: 100%;
}

.btn-elegante:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 56, 68, 0.3);
}

.sobre-visual {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.5rem;
    margin-top: 2rem;
}

.visual-card {
    background: var(--white-color);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

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

.visual-card:nth-child(3) {
    grid-column: 1 / -1;
    margin: 0 25%;
}

.visual-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white-color);
}

.visual-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.visual-card p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   DIFERENCIAIS ELEGANTES
   ======================================== */

.diferenciais-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #001a21 100%);
    overflow: hidden;
}

.diferenciais-overlay {
    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="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="90" cy="40" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 1;
}

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

.diferenciais-header {
    margin-bottom: 3rem;
}

.diferenciais-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.diferenciais-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.diferenciais-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.diferencial-card-elegante {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: var(--transition);
    overflow: hidden;
}

.diferencial-card-elegante::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--secondary-color), #ffb366);
}

.diferencial-card-elegante:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-number {
    position: absolute;
    top: -10px;
    right: 2rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(240, 131, 36, 0.3);
    line-height: 1;
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--secondary-color), #ffb366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white-color);
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(240, 131, 36, 0.3);
}

.diferencial-card-elegante h4 {
    color: var(--white-color);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.diferencial-card-elegante p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.card-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--secondary-color), #ffb366);
    opacity: 0.1;
    z-index: 1;
}

/* ========================================
   SIMULAÇÃO ELEGANTE
   ======================================== */

.simulacao-section {
    position: relative;
    padding: 100px 0;
    background: var(--white-color);
    overflow: hidden;
}

.simulacao-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.simulacao-shape {
    position: absolute;
    top: -30%;
    left: -10%;
    width: 50%;
    height: 120%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.03;
    border-radius: 30% 70% 70% 30%;
    transform: rotate(-15deg);
}

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

.simulacao-header {
    margin-bottom: 3rem;
}

.simulacao-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--secondary-color), #ffb366);
    color: var(--white-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(240, 131, 36, 0.3);
}

.simulacao-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.simulacao-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin: 0;
    font-weight: 400;
}

/* Visual Side */
.simulacao-visual {
    position: relative;
    padding-right: 2rem;
}

.image-placeholder {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius-lg);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.image-placeholder:hover {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #fff5f0 0%, #f8f9fa 100%);
}

.placeholder-content {
    text-align: center;
    color: var(--gray-color);
}

.placeholder-content i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
}

.placeholder-content p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.placeholder-content small {
    font-size: 0.9rem;
    color: var(--gray-color);
    opacity: 0.7;
}

.simulacao-features {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--white-color);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 0.9rem;
}

.feature-item span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Form Side */
.simulacao-form-elegante {
    background: var(--white-color);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 56, 68, 0.1);
    position: relative;
    overflow: hidden;
}

.simulacao-form-elegante::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.form-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-header h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--gray-color);
    margin: 0;
    font-size: 0.95rem;
}

.simulacao-form {
    position: relative;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.form-label i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.form-control-elegante,
.form-select-elegante {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    transition: var(--transition);
    background: #f8f9fa;
    color: var(--dark-color);
}

.form-control-elegante:focus,
.form-select-elegante:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white-color);
    box-shadow: 0 0 0 3px rgba(240, 131, 36, 0.1);
    transform: translateY(-2px);
}

.form-control-elegante::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.btn-simulacao-elegante {
    width: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: var(--white-color);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 1.5rem;
    cursor: pointer;
}

.btn-simulacao-elegante::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-simulacao-elegante:hover::before {
    left: 100%;
}

.btn-simulacao-elegante:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 56, 68, 0.3);
}

.btn-text {
    display: flex;
    align-items: center;
}

.btn-arrow {
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-simulacao-elegante:hover .btn-arrow {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.form-disclaimer {
    text-align: center;
    margin-top: 1rem;
}

.form-disclaimer p {
    font-size: 0.85rem;
    color: var(--gray-color);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-disclaimer i {
    color: var(--primary-color);
}

/* ========================================
   DEPOIMENTOS
   ======================================== */

.depoimentos-swiper {
    padding-bottom: 50px;
}

.depoimentos-swiper .swiper-pagination {
    bottom: 10px;
}

.depoimentos-swiper .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.3;
}

.depoimentos-swiper .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    opacity: 1;
}

.depoimentos-swiper .swiper-button-next,
.depoimentos-swiper .swiper-button-prev {
    color: var(--primary-color);
    background: var(--white-color);
    border-radius: 50%;
    box-shadow: var(--shadow);
    width: 40px;
    height: 40px;
    margin-top: -20px;
}

.depoimentos-swiper .swiper-button-next::after,
.depoimentos-swiper .swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

.depoimento-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 240px;
    position: relative;
    margin: 10px;
}

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

.depoimento-stars {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.depoimento-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    margin-top: auto;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
}

.autor-foto {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.autor-info h5 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.autor-info span {
    color: var(--gray-color);
    font-size: 0.85rem;
}

/* ========================================
   PARCEIROS
   ======================================== */

.parceiro-logo {
    padding: 1rem;
    text-align: center;
    transition: var(--transition);
    opacity: 0.7;
}

.parceiro-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.parceiro-logo img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    transition: var(--transition);
}

.parceiro-logo:hover img {
    filter: grayscale(0%);
}

/* ========================================
   RECONHECIMENTOS
   ======================================== */

.reconhecimento-item {
    padding: 2rem 1rem;
}

.reconhecimento-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--secondary-color), #ffb366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white-color);
}

.reconhecimento-item h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ========================================
   BLOG
   ======================================== */

.blog-card {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    transition: var(--transition);
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.blog-content h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blog-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

/* ========================================
   FAQ
   ======================================== */

.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.accordion-button { 
    color: var(--primary-color);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 56, 68, 0.25);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--gray-color);
    line-height: 1.6;
}

/* ========================================
   CONTATO
   ======================================== */

.contato-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.contato-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white-color);
}

.contato-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contato-form-card {
    background: var(--white-color);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #002a33 100%);
    color: var(--white-color);
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-title {
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-newsletter {
    margin-top: 1.5rem;
}

.footer-newsletter h6 {
    color: var(--white-color);
    margin-bottom: 1rem;
}

.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white-color);
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 3rem 0 2rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-legal {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 1rem;
    transition: var(--transition);
}

.footer-legal:hover {
    color: var(--secondary-color);
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-float a {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    color: var(--white-color);
}

/* ========================================
   ANIMAÇÕES
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-collapse {
        margin-left: 0;
        text-align: center;
    }

    .navbar-nav {
        margin-top: 1rem;
        margin: 1rem auto 0;
    }

    .btn-simular {
        margin-top: 1rem;
        width: 100%;
    }

    /* Sobre Section Responsive */
    .sobre-title {
        font-size: 2.5rem;
    }

    .sobre-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .sobre-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .visual-card:nth-child(3) {
        margin: 0;
    }

    /* Diferenciais Section Responsive */
    .diferenciais-title {
        font-size: 2.5rem;
    }

    .diferencial-card-elegante {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    section {
        padding: 3rem 0;
    }

    .diferencial-card,
    .simulacao-card,
    .contato-form-card {
        padding: 2rem 1.5rem;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* Sobre Section Mobile */
    .sobre-section {
        padding: 60px 0;
    }

    .sobre-title {
        font-size: 2rem;
        text-align: center;
    }

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

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

    .sobre-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .sobre-visual {
        grid-template-columns: 1fr;
        margin-top: 1rem;
    }

    .visual-card:nth-child(3) {
        margin: 0;
    }

    /* Diferenciais Section Mobile */
    .diferenciais-section {
        padding: 60px 0;
    }

    .diferenciais-title {
        font-size: 2rem;
    }

    .diferencial-card-elegante {
        padding: 2rem 1.5rem;
    }

    .card-number {
        font-size: 3rem;
        right: 1.5rem;
    }

    /* Simulação Section Mobile */
    .simulacao-section {
        padding: 60px 0;
    }

    .simulacao-title {
        font-size: 2rem;
    }

    .simulacao-visual {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .image-placeholder {
        height: 300px;
    }

    .simulacao-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .feature-item {
        justify-content: center;
        width: 100%;
        max-width: 300px;
    }

    .simulacao-form-elegante {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Páginas Internas Responsive */
    .page-hero {
        padding: 120px 0 80px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .content-text {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .mvv-card,
    .stats-card,
    .team-card {
        margin-bottom: 2rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .diferencial-card,
    .depoimento-card,
    .contato-card {
        padding: 1.5rem;
    }

    .simulacao-card,
    .contato-form-card {
        padding: 1.5rem;
    }

    .footer-social {
        justify-content: center;
    }

    /* Simulação Section Extra Small */
    .simulacao-title {
        font-size: 1.75rem;
    }

    .simulacao-badge {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .image-placeholder {
        height: 250px;
    }

    .placeholder-content i {
        font-size: 2rem;
    }

    .placeholder-content p {
        font-size: 1rem;
    }

    .simulacao-features {
        gap: 0.8rem;
    }

    .feature-item {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .simulacao-form-elegante {
        padding: 1.5rem;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    .btn-simulacao-elegante {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        gap: 0.8rem;
    }

    .btn-arrow {
        width: 35px;
        height: 35px;
    }

    /* Páginas Internas Extra Small */
    .page-hero {
        padding: 100px 0 60px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .breadcrumb {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .mvv-card,
    .stats-card {
        padding: 2rem 1.5rem;
    }

    .mvv-icon {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .stats-number {
        font-size: 3rem;
    }

    .stats-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .team-content {
        padding: 1.5rem;
    }

    .team-image img {
        height: 250px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

/* ========================================
   PÁGINAS INTERNAS
   ======================================== */

/* Page Hero */
.page-hero {
    position: relative;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #001a21 100%);
    overflow: hidden;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.page-hero-shape {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 120%;
    background: linear-gradient(45deg, var(--secondary-color), #ffb366);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30%;
    transform: rotate(15deg);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white-color);
}



.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin: 0 auto;
    display: inline-flex;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: var(--secondary-color);
    margin: 0 0.5rem;
    font-weight: 600;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    color: var(--white-color);
    font-weight: 600;
}

/* Page Title */
.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Content */
.page-content {
    position: relative;
    z-index: 2;
}

.content-text {
    padding-right: 2rem;
}

.content-image {
    position: relative;
}

.content-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0.1;
}

/* MVV Cards (Missão, Visão, Valores) */
.mvv-card {
    background: var(--white-color);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

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

.mvv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white-color);
    box-shadow: 0 10px 30px rgba(0, 56, 68, 0.3);
}

.mvv-card h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.mvv-card p {
    color: var(--gray-color);
    line-height: 1.7;
    margin: 0;
}

/* Stats Cards */
.stats-card {
    background: var(--white-color);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--secondary-color), #ffb366);
}

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

.stats-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-label {
    color: var(--gray-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.stats-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--secondary-color), #ffb366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white-color);
    opacity: 0.7;
}

/* Team Cards */
.team-card {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.read-more-btn:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-content {
    padding: 2rem;
}

.team-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-description {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.team-social .social-link {
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.team-social .social-link:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #001a21 100%);
    color: var(--white-color);
    overflow: hidden;
}

.cta-section::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="ctaPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23f08324" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23ctaPattern)"/></svg>');
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   UTILITÁRIOS
   ======================================== */

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.overlay {
    position: relative;
}

.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 56, 68, 0.7);
    z-index: 1;
}

.overlay>* {
    position: relative;
    z-index: 2;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}