/**
 * Landing Page Débora Melo
 * Design Moderno, Clean e Elegante
 * Cores: Marrom claro, rosa, detalhes
 */

/* ===== FONTE GAGALIN ===== */
/* Se a fonte Gagalin não estiver disponível no Google Fonts,
   descomente e ajuste o @font-face abaixo ou adicione os arquivos em assets/fonts/ */
/*
@font-face {
    font-family: 'Gagalin';
    src: url('../fonts/Gagalin-Regular.woff2') format('woff2'),
         url('../fonts/Gagalin-Regular.woff') format('woff'),
         url('../fonts/Gagalin-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
*/

/* ===== VARIABLES ===== */
:root {
    /* Cores principais */
    --color-brown-light: #D4A574;
    --color-brown: #B8865B;
    --color-brown-dark: #8B6F47;
    --color-pink: #F4A5C1;
    --color-pink-light: #F8C4D9;
    --color-pink-dark: #E67FA8;
    
    /* Cores neutras */
    --color-white: #FFFFFF;
    --color-light: #F8F6F3;
    --color-gray: #6C757D;
    --color-dark: #2C2C2C;
    --color-black: #000000;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--color-brown-light) 0%, var(--color-pink) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(212, 165, 116, 0.9) 0%, rgba(244, 165, 193, 0.9) 100%);
    
    /* Tipografia */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Montserrat', sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: var(--spacing-sm);
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: var(--gradient-primary);
    background-image: url('../images/hero-bg.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: 1;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: var(--spacing-md);
}

.hero-logo {
    width: 120px;
    height: 120px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-xl);
}

.hero-logo-img {
    width: 60px;
    height: auto;
    object-fit: contain;
    max-width: 100%;
}

.hero-title {
    color: var(--color-white);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    color: var(--color-white);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    margin-bottom: var(--spacing-md);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-tagline {
    color: var(--color-white);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-style: italic;
    margin-bottom: var(--spacing-md);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--color-white);
    font-size: 2rem;
    display: block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== BUTTONS ===== */
.btn {
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--color-white);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-brown);
    transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section-about,
.section-experience,
.section-services,
.section-contact {
    padding: var(--spacing-xl) 0;
}

.section-title {
    color: var(--color-brown-dark);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

.section-subtitle {
    color: var(--color-gray);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

.section-content {
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.8;
}

/* ===== ABOUT SECTION ===== */
.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    width: 100%;
    height: 100%;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transform: rotate(45deg);
    transition: var(--transition-slow);
}

.about-image-wrapper:hover::before {
    transform: rotate(45deg) translate(20px, 20px);
}

.about-image-wrapper img {
    transition: var(--transition-slow);
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

/* ===== EXPERIENCE SECTION ===== */
.section-experience {
    background: var(--color-light);
}

.experience-content {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.cities-badge {
    margin-top: var(--spacing-md);
}

.cities-badge .badge {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-brown-light);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    font-size: 2rem;
    color: var(--color-white);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    color: var(--color-brown-dark);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.service-description {
    color: var(--color-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.service-link {
    color: var(--color-brown);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-normal);
    margin-top: auto;
}

.section-services .row.g-4 > [class*="col-"] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1;
}

.service-link:hover {
    color: var(--color-pink-dark);
    transform: translateX(5px);
}

/* ===== CONTACT SECTION ===== */
.section-contact {
    background: var(--color-light);
}

/* ===== CONTACT SECTION ===== */
.contact-info {
    margin-bottom: var(--spacing-md);
}

.contact-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-md);
}

.contact-phone i {
    color: var(--color-brown);
    font-size: 1.3rem;
}

.phone-link {
    color: var(--color-dark);
    text-decoration: none;
    transition: var(--transition-normal);
}

.phone-link:hover {
    color: var(--color-brown);
}

.phone-number {
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Ícones de contato - padrão uniforme */
.contact-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-size: 2rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.contact-icon-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
    color: var(--color-white);
}

/* WhatsApp */
.whatsapp-icon-btn {
    background: #25D366;
}

.whatsapp-icon-btn:hover {
    background: #20ba5a;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}

/* Instagram */
.instagram-icon-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-icon-btn:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.6);
}

/* Botões antigos mantidos para compatibilidade */
.whatsapp-contact-btn {
    display: none;
}

.instagram-contact-btn {
    display: none;
}

/* Estilos antigos mantidos para compatibilidade - não mais usados */
.whatsapp-contact-icon {
    display: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-top: 3px solid rgba(255, 255, 255, 0.2);
}

.footer p {
    color: var(--color-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-white);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
}


/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-white);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}

/* ===== ANIMATIONS ===== */
@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% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2.5rem;
        --spacing-lg: 1.5rem;
        --spacing-md: 1.25rem;
        --spacing-sm: 0.75rem;
    }
    
    body {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .hero-section {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        padding: var(--spacing-md) 0;
    }
    
    .hero-content {
        padding: var(--spacing-md);
    }
    
    .hero-logo {
        width: 100px;
        height: 100px;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-logo-img {
        width: 50px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        margin-bottom: var(--spacing-sm);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: var(--spacing-md);
        line-height: 1.4;
        padding: 0 var(--spacing-sm);
    }
    
    .hero-tagline {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem);
        margin-bottom: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }
    
    .section-about,
    .section-experience,
    .section-services,
    .section-contact {
        padding: var(--spacing-lg) 0;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: var(--spacing-md);
        text-align: center;
        width: 100%;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
        text-align: center;
        padding: 0 var(--spacing-sm);
    }
    
    .section-content {
        font-size: 1rem;
        line-height: 1.8;
        padding: 0 var(--spacing-sm);
    }
    
    .section-content p {
        margin-bottom: var(--spacing-md);
    }
    
    .lead {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .about-image-wrapper {
        margin-bottom: var(--spacing-md);
    }
    
    .experience-content {
        padding: var(--spacing-md);
        margin: 0 var(--spacing-sm);
    }
    
    .experience-content p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: var(--spacing-md);
    }
    
    .service-card {
        margin-bottom: var(--spacing-md);
        padding: var(--spacing-md);
    }
    
    .service-title {
        font-size: 1.35rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .service-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: var(--spacing-md);
    }
    
    .section-about .row {
        flex-direction: column-reverse;
    }
    
    .section-contact {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .contact-buttons {
        gap: 2rem;
        justify-content: center;
    }
    
    .contact-icon-btn {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
    }
    
    .contact-phone {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-md);
    }
    
    .phone-number {
        font-size: 1.2rem;
    }
    
    .footer {
        padding: var(--spacing-md) 0;
        text-align: center;
    }
    
    .footer p {
        font-size: 0.9rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .footer-social {
        justify-content: center;
        margin-top: var(--spacing-sm);
    }
}

@media (max-width: 576px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-lg: 1.25rem;
        --spacing-md: 1rem;
    }
    
    .container {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-content {
        font-size: 0.95rem;
    }
    
    .service-card {
        padding: var(--spacing-md);
    }
    
    .cities-badge .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ===== UTILITIES ===== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: var(--shadow-lg);
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

/* ===== SCROLLBAR CUSTOMIZATION ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-brown-dark);
}

/* ===== SELECTION ===== */
::selection {
    background: var(--color-pink-light);
    color: var(--color-dark);
}

::-moz-selection {
    background: var(--color-pink-light);
    color: var(--color-dark);
}

/* ===== FOCUS STATES ===== */
a:focus,
button:focus {
    outline: 2px solid var(--color-brown-light);
    outline-offset: 2px;
}

/* ===== LOADING ANIMATION ===== */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading-shimmer {
    animation: shimmer 2s infinite linear;
    background: linear-gradient(
        to right,
        #f0f0f0 0%,
        #e0e0e0 20%,
        #f0f0f0 40%,
        #f0f0f0 100%
    );
    background-size: 1000px 100%;
}

/* ===== DESKTOP STYLES (não afeta mobile) ===== */
@media (min-width: 992px) {
    /* Margem nos H2 para desktop - não colados na esquerda */
    .section-title {
        margin-left: 0;
        padding-left: 1.5rem;
    }
    
    /* Parágrafos abaixo dos H2 com margem maior */
    .section-content {
        padding-left: 2.5rem;
    }
    
    .experience-content {
        padding-left: 2.5rem;
    }
    
    /* Section subtitle com margem - alinhar à esquerda no desktop */
    .section-subtitle {
        text-align: left;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    /* Service description com margem */
    .service-description {
        padding-left: 1.5rem;
        padding-right: 1rem;
    }
    
    /* Container centralizado mas conteúdo alinhado à esquerda */
    .text-center .section-subtitle {
        text-align: left;
    }
    
    /* ===== CONTACT SECTION - DESKTOP ===== */
    .section-contact {
        text-align: left;
    }
    
    .contact-info {
        text-align: left;
    }
    
    .contact-phone {
        justify-content: flex-start;
        padding-left: 2rem;
    }
    
    .contact-buttons {
        justify-content: flex-start;
        padding-left: 2rem;
        gap: 2rem;
    }
    
    .contact-icon-btn {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
    
    /* Seção Sobre - garantir lado a lado, cada um 50% */
    .section-about .row {
        align-items: center;
        display: flex;
    }
    
    .section-about .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .section-about .col-lg-6:first-child {
        padding-right: 2rem;
    }
    
    .section-about .col-lg-6:last-child {
        padding-left: 2rem;
    }
    
    .section-about .about-image-wrapper {
        width: 100%;
        height: 100%;
    }
    
    .section-about .about-image-wrapper img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    /* Cards de serviços - layout livre e aleatório */
    .section-services .row.g-4 {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 2rem;
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        min-height: 600px;
    }
    
    /* Posicionamento dos cards - layout livre mas alinhados */
    .section-services .row.g-4 > div:nth-child(1) {
        grid-column: 1 / 5;
        grid-row: 1;
    }
    
    .section-services .row.g-4 > div:nth-child(2) {
        grid-column: 5 / 9;
        grid-row: 1;
        margin-top: 2rem;
    }
    
    .section-services .row.g-4 > div:nth-child(3) {
        grid-column: 9 / 13;
        grid-row: 1;
    }
    
    .section-services .row.g-4 > div:nth-child(4) {
        grid-column: 2 / 6;
        grid-row: 2;
        margin-top: -1rem;
    }
    
    .section-services .row.g-4 > div:nth-child(5) {
        grid-column: 7 / 11;
        grid-row: 2;
        margin-top: 1rem;
    }
    
    /* Cards maiores */
    .section-services .col-md-6.col-lg-4 {
        width: 100%;
        max-width: 100%;
    }
    
    .service-card {
        padding: var(--spacing-lg);
        height: auto;
    }
    
    .service-icon {
        width: 75px;
        height: 75px;
        font-size: 1.8rem;
        margin-bottom: var(--spacing-md);
    }
    
    .service-title {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .service-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: var(--spacing-md);
    }
}

@media (min-width: 1400px) {
    .section-services .row.g-4 {
        min-height: 700px;
    }
    
    .service-card {
        padding: calc(var(--spacing-lg) + 0.5rem);
    }
}
                                                                                                                    
                                                                                                                    