:root {
    --accent-color: #000000;
    --background-color: #ffffff;
    --background-secondary-color: #F0F4F8;
    --text-primary: #383838;
    --text-secondary: #3f3f3f;
    --border-color: #D4D4E1;
    --placeholder-color: #6F6F76;
    --error-color: #ff3d0d;
    --alert-primary: #0065D1;
    --alert-success: #1CAB55;
    --alert-danger: #E91C1C;
    --alert-warning: #C79C00;
    --el-border-radius: 10px;
    --el-border-radius-min: 6px;
    --el-box-shadow: 2px 4px 20px 1px rgba(45, 45, 45, 0.13);
    --header-box-shadow: 0px 0px 14px 0px rgba(77, 82, 94, 0.15);
}

/* Link & Section Base */
a {
    text-decoration: none;
}

section {
    padding: 80px 0;
}

.vh-80 {
    height: 80vh !important;
}

.text-gradient {
    background: linear-gradient(90deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-outline-light {
    border: 2px solid white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: #000 !important;
}

/* Navbar Custom */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar .container {
    background: #ffffff4d;
    padding: 1rem 3rem;
    border-radius: 40px;
    backdrop-filter: blur(50px);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 2px;
}

.navbar-logo {
    height: 40px;
    width: auto;
}

.nav-link {
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: black;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 70%;
}

.navbar .btn-outline-light,
.hero .btn-outline-light {
    border: 2px solid black;
    color: black;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar .btn-outline-light:hover,
.hero .btn-outline-light:hover {
    background: black;
    border-color: black;
    color: white !important;
}

/* Hero Section */
.hero {
    background: white;
    padding: 0;
}

.hero .btn-outline-light {
    z-index: 1;
}

.hero .row:first-child {
    padding-left: 0px;
}

.hero .text-gradient {
    background: linear-gradient(90deg, #000000 0%, #777777 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-image {
    border-top-left-radius: 180px;
    -webkit-box-shadow: -10px 10px 40px 10px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: -10px 10px 40px 10px rgba(0, 0, 0, 0.25);
    box-shadow: -10px 10px 40px 10px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -10%;
    width: 120%;
    height: 100px;
    background: #fff;
    transform: rotate(-4deg);
    z-index: 1;
}

/* Promotion Band */
.promo-band {
    position: relative;
    z-index: 2;
}

/* Passion Section */
.passion-section {
    height: 100vh;
    position: relative;
    padding: 8rem 0;
}

/* Financial Language Section */
.card-lg {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.card-lg:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #000, #222);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.deco-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #fff 0%, transparent 100%);
    opacity: 0.2;
    transition: all 0.4s ease;
}

.card-lg:hover .deco-line {
    width: 150px;
    opacity: 1;
}

/* Benefits Section */
.benefits-section {
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.rotate-right {
    transform: rotate(3deg);
}

.rotate-left {
    transform: rotate(-3deg);
}

.benefit-card:hover {
    transform: rotate(0deg) translateY(-10px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-illustration {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}

.benefit-card::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #000;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover::after {
    opacity: 1;
}

/* Services Overview Section */
.services-overview {
    position: relative;
    padding: 6rem 0;
}

.service-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    line-height: 1.2;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-card .btn {
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card .btn:hover {
    background: white;
    color: #000 !important;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #000000;
    position: relative;
    padding: 6rem 0;
    min-height: 90vh;
}

.testimonials-section .p-5 {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.testimonials-section .p-5:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.testimonials-section .lead {
    font-size: 1.75rem;
    line-height: 1.4;
    color: #ffffff;
}

.testimonials-section img {
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.text-muted {
    color: #b0b0b0 !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 10px;
}

/* Team Section */
.team-section {
    position: relative;
    padding: 6rem 0;
}

.team-img {
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: auto;
}

.team-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-contact {
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-contact:hover {
    background-color: #0f2c2c;
    color: white !important;
}

/* Final CTA Section */
.bg-gradiente {
    background: linear-gradient(45deg, #000000, #1a1a1a);
}

.cta-section .btn {
    border: 2px solid white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    background: white;
    color: #000 !important;
}

/* Footer Section */
.footer-section {
    background: #1a1a1a;
    position: relative;
}

.footer-section p,
.footer-section ul li {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section .social-links a {
    color: white;
    transition: all 0.3s ease;
}

.footer-section .social-links a:hover {
    color: #aaa !important;
}

.footer-section .hover-gradient {
    position: relative;
    transition: all 0.3s ease;
}

.footer-section .hover-gradient:hover {
    color: #fff !important;
    background: linear-gradient(90deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section .btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.footer-section .btn-outline-light:hover {
    background: white;
    color: #000 !important;
}

.footer-section .fa-heart {
    font-size: 0.8rem;
}

/**********************/
/* PÁGINA SOBRE */
/**********************/

/* Purpose Section */
.purpose-section {
    min-height: 80vh;
    position: relative;
}

.purpose-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -10%;
    width: 120%;
    height: 200px;
    background: #fff;
    transform: rotate(4deg);
    z-index: 1;
}

.purpose-section div {
    position: relative;
    z-index: 2;
}

/* MVV Section */
.mvv-section {
    display: flex;
    align-items: center;
    min-height: 100vh;
}

/* Team Section (página Sobre) */
.team-section {
    display: flex;
    align-items: center;
    min-height: 120vh;
}

.team-img {
    width: 100%;
    max-width: 200px;
}

.team-img img {
    width: 100%;
    height: auto;
}

/* CTA Section */
.cta-section {
    display: flex;
    align-items: center;
    min-height: 50vh;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Services Section (página Sobre) */
.services-section {
    background: #f1f3f5;
    min-height: 120vh;
    padding: 60px 0;
}

.services-section h2 {
    color: #000;
}

.services-section .equal-height {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.services-section .col-lg-4 {
    display: flex;
}

.services-section .card-lg {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services-section .card-lg h3,
.services-section .card-lg p,
.services-section .card-lg ul {
    color: #333;
}

.services-section .deco-line {
    background: linear-gradient(90deg, #fff, #aaa, #fff);
}

/* CTA Section (página Sobre) */
.cta-section .benefit-card {
    background: rgba(255, 255, 255, 0.1);
    border: none;
}

/* Contact Section */
.contact-section {
    position: relative;
    z-index: 2;
}

/* Contact Form */
.contact-form {
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.contact-form:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.btn-outline-dark {
    border: 2px solid #000;
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: #000;
    color: #fff !important;
}

/* Contact Info Section */
.contact-info .card-lg {
    text-align: center;
}

.contact-info .icon-wrapper {
    margin-left: auto;
    margin-right: auto;
}




*::-webkit-input-placeholder,
*::placeholder {
    color: var(--placeholder-color);
    opacity: 1;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="url"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"],
input[type="file"],
textarea {
    display: block;
    font-size: 1rem;
    width: 100%;
    padding: calc(0.75em - 1px) 1rem;
    margin-bottom: 1rem;
    border-radius: var(--el-border-radius-min);
    border: 1px solid var(--border-color);
    background-color: transparent;
    outline: none;
    color: var(--text-primary);
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime-local"]:focus,
input[type="file"]:focus,
textarea:focus {
    border-color: var(--accent-color);
}

input[type="text"]:disabled,
input[type="email"]:disabled,
input[type="tel"]:disabled,
input[type="password"]:disabled,
input[type="number"]:disabled,
input[type="search"]:disabled,
input[type="url"]:disabled,
input[type="date"]:disabled,
input[type="month"]:disabled,
input[type="week"]:disabled,
input[type="time"]:disabled,
input[type="datetime-local"]:disabled,
input[type="file"]:disabled,
textarea:disabled {
    background-color: var(--background-secondary-color);
}

textarea {
    height: auto;
    resize: none;
}

.form-fields {
    margin-bottom: -1.25rem;
}

.form-field {
    position: relative;
    margin-bottom: 1.25rem;
}

.form-field.error input,
.form-field.error textarea {
    border-color: var(--error-color);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="password"],
.form-field input[type="number"],
.form-field input[type="search"],
.form-field input[type="url"],
.form-field input[type="date"],
.form-field input[type="month"],
.form-field input[type="week"],
.form-field input[type="time"],
.form-field input[type="datetime-local"],
.form-field input[type="file"],
.form-field textarea,
.form-field .form-field-label {
    margin: 0;
}

.form-field.form-field-m0 {
    margin: 0;
}

.form-field.focus .form-field-label {
    opacity: 0;
    visibility: hidden;
    transform: translateX(1rem);
}

.form-field div.error {
    position: absolute;
    right: 0.3125rem;
    top: 0.3125rem;
    color: var(--error-color);
    font-size: 0.75rem;
    line-height: 1;
}

.form-field.form-field-checkbox div.error {
    position: absolute;
    right: initial;
    left: 0;
    top: -0.875rem;
    color: var(--error-color);
    font-size: 0.75rem;
    line-height: 1;
}

.form-field input.error,
.form-field textarea.error {
    border-color: var(--error-color);
}

.form-field small {
    color: var(--text-secondary);
}

.input-states-labelled {
    display: block;
}

.form-field-group {
    position: relative;
}

.form-field-group.focus .form-field-label {
    opacity: 0;
    visibility: hidden;
    transform: translateX(1rem);
}

.required {
    color: var(--error-color);
}

.form-field-label {
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    pointer-events: none;
    color: var(--placeholder-color);
    padding: calc(0.75em - 1px) 1rem;
    transition: all 0.2s;
    border: 1px solid transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.form-btn {
    display: flex;
}

.form-btn.form-btn-wide .btn {
    width: 100%;
}

.form-btn .btn {
    display: block;
}

.alerts {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    padding-left: 15px;
    z-index: 300000;
}

.alerts.alerts-static {
    position: relative;
    right: 0;
    bottom: 0;
    padding: 0;
    z-index: 0;
}

.alerts.alerts-static .alert {
    margin-left: 0;
}

.alert {
    position: relative;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: flex-start;
    border-radius: var(--el-border-radius-min);
    color: var(--background-color);
    font-size: 1rem;
    margin-left: 15px;
    margin-bottom: 0.625rem;
    overflow: hidden;
}

.alert::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--alert-primary);
    opacity: 0.5;
    z-index: -1;
}

.alert a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
}

.alert a a {
    color: var(--text-primary);
}

.alert a:hover {
    text-decoration: underline;
}

.alert .alert-ico {
    color: var(--alert-primary);
}

.alert:last-child {
    margin-bottom: 0;
}

.alert.alert-success::after {
    background-color: var(--alert-success);
}

.alert.alert-success .alert-ico {
    color: var(--alert-success);
}

.alert.alert-danger::after {
    background-color: var(--alert-danger);
}

.alert.alert-danger .alert-ico {
    color: var(--alert-danger);
}

.alert.alert-warning::after {
    background-color: var(--alert-warning);
}

.alert.alert-warning .alert-ico {
    color: var(--alert-warning);
}

.alert-text {
    line-height: 1.375rem;
}

.alert-ico {
    display: flex;
    align-items: center;
    margin-right: 0.625rem;
}

.alert-close {
    position: absolute;
    right: 0.375rem;
    top: 0.375rem;
    padding: 0;
    border: none;
    background-color: transparent;
    line-height: 1;
    cursor: pointer;
    color: var(--text-primary);
    outline: none;
    opacity: 0.6;
    transition: all 0.2s;
}

.alert-close:focus {
    outline: none;
}

.alert-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.alert-title {
    margin-bottom: 0.625rem;
    margin-left: 1rem;
}

.whatsapp-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: var(--accent-color);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all .2s;
}

.whatsapp-button:hover {
    background-color: var(--background-color);
    color: black;
}

.whatsapp-button i {
    margin-top: 16px;
}