/* 
* Mairink Business Consulting - Main Stylesheet
* Inspirado em: Vercel, Stripe e Retool
* Cores: Preto, branco, prata e azul petróleo (#034da3)
*/

/* ===== RESET & BASE STYLES ===== */
:root {
    --color-primary: #034da3;
    --color-primary-dark: #023d82;
    --color-secondary: #333;
    --color-text: #333;
    --color-text-light: #666;
    --color-text-lighter: #999;
    --color-bg: #fff;
    --color-bg-alt: #f9f9f9;
    --color-bg-dark: #111;
    --color-border: #eaeaea;
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    --ease: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    
    --header-height: 80px;
    --container-max-width: 1200px;
    --container-padding: 1.5rem;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-dark));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) rgba(0, 0, 0, 0.05);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%; /* 10px = 1rem */
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

a:hover {
    color: var(--color-primary-dark);
}

ul, ol {
    list-style: none;
}

button, input, textarea {
    font-family: var(--font-sans);
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    margin: 2rem auto;
    border-radius: 2px;
    transform-style: preserve-3d;
    box-shadow: 0 2px 4px rgba(3, 77, 163, 0.2);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.5rem;
}

.col {
    flex: 1;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.5s var(--ease);
    transform: skewX(-15deg);
    z-index: -1;
}

.btn:hover::before {
    width: 120%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(3, 77, 163, 0.3);
}

.btn-primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(3, 77, 163, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(3, 77, 163, 0.3);
}

.highlight {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 15px;
}

.highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-dark));
    border-radius: 2px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: perspective(1000px) rotateX(10deg) translateY(50px);
    }
    to {
        opacity: 1;
        transform: perspective(1000px) rotateX(0) translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    transform-style: preserve-3d;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.float {
    animation: floatAnimation 6s infinite ease-in-out;
}

.rotate-in {
    opacity: 0;
    transform: perspective(1000px) rotateX(10deg) translateY(50px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.rotate-in.visible {
    opacity: 1;
    transform: perspective(1000px) rotateX(0) translateY(0);
}

/* Aplicando efeito 3D aos cards e itens */
.card, .valor-item {
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.card:hover, .valor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -10px rgba(3, 77, 163, 0.15);
}

.card-icon, .valor-item i {
    transition: all 0.3s var(--ease);
}

.card:hover .card-icon i, .valor-item:hover i {
    color: var(--color-primary-dark);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-sm);
}

.header.scrolled {
    height: 70px;
    border-radius: 15px;
    width: 95%;
    left: 2.5%;
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    border: 2px solid var(--color-primary);
    box-shadow: 0 5px 15px rgba(3, 77, 163, 0.15);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list li {
    margin-left: 3rem;
}

.nav-list a {
    position: relative;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-text);
    padding: 0.5rem 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s var(--ease);
}

.nav-list a:hover {
    color: var(--color-primary);
}

.nav-list a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: all 0.3s var(--ease);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('../img/office.jpg') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(3, 77, 163, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: 2.4rem;
    line-height: 1.5;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* ===== SOBRE SECTION ===== */
.sobre .col p {
    margin-bottom: 2rem;
}

.valores {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.valor-item {
    text-align: center;
    padding: 2rem;
    border-radius: 6px;
    background-color: #f9f9f9;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.valor-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.valor-item i {
    font-size: 3.6rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.valor-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.valor-item p {
    color: var(--color-text-light);
    margin-bottom: 0 !important;
}

/* ===== SERVIÇOS SECTION ===== */
.servicos {
    background-color: var(--color-bg-alt);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(3, 77, 163, 0.1);
    border-radius: 50%;
    margin-bottom: 2rem;
}

.card-icon i {
    font-size: 3.6rem;
    color: var(--color-primary);
}

.card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.card p {
    color: var(--color-text-light);
}

/* ===== CONTATO SECTION ===== */
.contato-info {
    margin-bottom: 4rem;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.contato-item i {
    font-size: 2.4rem;
    color: var(--color-primary);
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.contato-item h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.redes-sociais {
    display: none;
}

.contato-form .form-group {
    margin-bottom: 2rem;
    position: relative;
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background-color: #fff;
    transition: all 0.3s var(--ease);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transform-style: preserve-3d;
}

.contato-form input:focus,
.contato-form textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(3, 77, 163, 0.1);
    transform: translateY(-2px);
    outline: none;
}

.contato-form input:focus::placeholder,
.contato-form textarea:focus::placeholder {
    opacity: 0.5;
}

.contato-form textarea {
    resize: vertical;
}

.contato-form button {
    min-width: 180px;
}

.contato-form button.success {
    background: linear-gradient(135deg, #28a745, #218838);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    animation: pulseSuccess 1.5s var(--ease-in-out);
}

@keyframes pulseSuccess {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366, #1da851);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.3s var(--ease);
    transform-style: preserve-3d;
    animation: pulse 2s infinite;
    overflow: hidden;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s var(--ease);
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s var(--ease);
    transform: scale(0);
}

.whatsapp-btn i {
    font-size: 3rem;
    transition: all 0.5s var(--ease);
    position: relative;
    z-index: 2;
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.6);
    color: #fff;
    animation: none;
}

.whatsapp-btn:hover::before {
    opacity: 1;
    transform: scale(1.5);
}

.whatsapp-btn:hover::after {
    opacity: 1;
    transform: scale(1.8);
    animation: ripple 1.5s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.whatsapp-btn:hover i {
    transform: rotateY(360deg) scale(1.2);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--color-bg-dark);
    color: #fff;
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark), var(--color-primary));
    opacity: 0.7;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-logo h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-links li {
    margin-right: 3rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s var(--ease);
    position: relative;
    padding-bottom: 5px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    transition: width 0.3s var(--ease);
    border-radius: 2px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-social {
    display: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    position: relative;
    display: inline-block;
    padding: 0 10px;
}

.footer-bottom p::before,
.footer-bottom p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-bottom p::before {
    left: -30px;
}

.footer-bottom p::after {
    right: -30px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 4.8rem;
    }
    
    .hero-content p {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 60%;
    }
    
    .row {
        flex-direction: column;
    }
    
    .col {
        flex: none;
        width: 100%;
        margin-bottom: 4rem;
    }
    
    .col:last-child {
        margin-bottom: 0;
    }
    
    .valores {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo, .footer-links {
        margin-bottom: 3rem;
    }
    
    .footer-links ul {
        justify-content: center;
    }
    
    .footer-social {
        display: flex;
        justify-content: center;
    }
    
    .footer-social a:first-child {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 6rem 0;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 2rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .header.scrolled {
        width: 92%;
        left: 4%;
        border-radius: 15px;
    }
    
    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: 0;
        background-color: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        overflow: hidden;
        transition: height 0.3s var(--ease);
    }
    
    .nav.open {
        height: calc(100vh - var(--header-height));
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        box-shadow: 0 5px 15px rgba(3, 77, 163, 0.15);
        width: 92%;
        left: 4%;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem 0;
    }
    
    .nav-list li {
        margin: 1.5rem 0;
    }
    
    .nav-list a {
        font-size: 2rem;
    }
    
    .valores {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .highlight {
        font-size: 1.8rem;
    }
    
    .header.scrolled {
        width: 94%;
        left: 3%;
    }
    
    .nav.open {
        width: 94%;
        left: 3%;
    }
    
    .whatsapp-btn {
        bottom: 2rem;
        right: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-btn i {
        font-size: 2.4rem;
    }
}

/* ===== DIFERENCIAIS SECTION ===== */
.diferenciais {
    background-color: var(--color-bg-alt);
}

.features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.feature-col {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s var(--ease);
}

.feature-col:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(3, 77, 163, 0.1);
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.feature-icon i {
    font-size: 3rem;
    color: var(--color-primary);
}

.feature-col h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.feature-col p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.cta-box {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    padding: 4rem;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    box-shadow: var(--shadow-md);
}

.cta-box h3 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-box .btn {
    background-color: #fff;
    color: var(--color-primary);
    font-weight: 600;
}

.btn-consulta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-consulta:hover {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-box .btn:hover {
    background-color: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--color-primary);
}

/* ===== DEPOIMENTOS SECTION ===== */
.depoimentos {
    background-color: #fff;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.testimonial {
    background-color: var(--color-bg-alt);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    padding: 3rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 6rem;
    color: rgba(3, 77, 163, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding: 2rem 3rem;
    background-color: #fff;
    border-top: 1px solid var(--color-border);
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
    border: 2px solid var(--color-primary);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.testimonial-info p {
    font-size: 1.4rem;
    color: var(--color-text-light);
}

/* ===== METODOLOGIA SECTION ===== */
.metodologia {
    background-color: var(--color-bg-alt);
}

.process-container {
    max-width: 800px;
    margin: 0 auto 5rem;
}

.process-step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 30px;
    width: 2px;
    height: calc(100% - 30px);
    background: linear-gradient(to bottom, var(--color-primary), rgba(3, 77, 163, 0.2));
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-right: 2rem;
    box-shadow: 0 5px 15px rgba(3, 77, 163, 0.2);
    z-index: 1;
}

.step-content {
    flex: 1;
    padding: 1.5rem 0;
}

.step-content h3 {
    font-size: 2.2rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.methodology-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.methodology-image img {
    width: 100%;
    height: auto;
    display: block;
} 