/* ============================================ */
/* VARIABLES & GLOBAL STYLES */
/* ============================================ */
:root {
    /* Colors */
    --color-primary: #2c3e50; /* Dark Blue/Slate */
    --color-secondary: #3498db; /* Bright Blue */
    --color-accent: #e74c3c; /* Bright Red/Orange */
    --color-background-light: #ffffff; /* White */
    --color-background-gray: #f8f9fa; /* Light Gray */
    --color-text-dark: #343a40; /* Dark Gray */
    --color-text-medium: #6c757d; /* Medium Gray */
    --color-text-light: #ffffff;
    --color-border: #dee2e6; /* Light Border Color */

    /* Fonts */
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Roboto Slab', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;  /* 8px */
    --spacing-sm: 1rem;    /* 16px */
    --spacing-md: 1.5rem;  /* 24px */
    --spacing-lg: 2.5rem;  /* 40px */
    --spacing-xl: 4rem;    /* 64px */
    --section-padding-y: var(--spacing-xl);

    /* Borders & Shadows */
    --border-radius-sm: 0.25rem; /* 4px */
    --border-radius-md: 0.5rem;  /* 8px */
    --border-radius-lg: 0.8rem;  /* 12.8px */
    --box-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --box-shadow-md: 0 4px 10px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.15);

    /* Card Specific Variables */
    --card-padding: var(--spacing-md);
    --card-icon-size: 40px;
    --card-gap: var(--spacing-md); /* Default gap between cards */
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-background-light);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden; /* CRUCIAL: Prevent horizontal scroll on the body */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    overflow-wrap: break-word; /* Prevent heading overflow */
}

p {
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-medium);
    overflow-wrap: break-word; /* <<< ADD: Ensure paragraphs wrap */
    hyphens: auto; /* Optional: improve wrapping */
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* ============================================ */
/* UTILITIES & HELPERS */
/* ============================================ */
.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

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

.text-warning {
     color: #ffc107 !important; /* Keep Bootstrap star color */
}

.text-muted {
     color: var(--color-text-medium) !important;
}

/* ============================================ */
/* HEADER / NAVBAR / HERO (UNCHANGED) */
/* ============================================ */
.hero {
    position: relative;
    height: 90vh; /* Adjust as needed */
    min-height: 500px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-text-light);
    padding-top: 60px; /* Space for navbar */
}

.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero::before { /* Overlay */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Slightly adjusted overlay */
    z-index: 1;
}

.navbar { /* Assuming navbar is positioned absolutely */
    z-index: 10;
    transition: background-color 0.3s ease;
    padding-top: var(--spacing-xs);
    padding-bottom: var(--spacing-xs);
    background-color: rgba(44, 62, 80, 0.8); /* Semi-transparent background always */
    box-shadow: var(--box-shadow-sm);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: var(--border-radius-sm);
    transition: color 0.3s ease, background-color 0.3s ease;
    font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: var(--color-text-light);
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler {
     border-color: rgba(255, 255, 255, 0.2);
}
.navbar-toggler-icon {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.hero-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-md);
    max-width: 900px;
}

.main-logo-container h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-xs);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero h2 { /* Typing text */
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 400;
    color: var(--color-text-light);
    min-height: 40px;
    margin-bottom: var(--spacing-sm);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-typing-container {
    display: inline-block;
    border-right: .10em solid var(--color-accent);
    animation: typing-cursor .75s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes typing-cursor {
    from, to { border-color: transparent }
    50% { border-color: var(--color-accent); }
}

.hero p#heroParagraph {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-text-light);
    padding: 12px 30px;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius-md);
    transition: background-color .3s ease, border-color .3s ease, transform .3s ease, box-shadow 0.3s ease;
    box-shadow: var(--box-shadow-sm);
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    color: var(--color-text-light);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-md);
}


/* ============================================ */
/* SECTION STYLING */
/* ============================================ */
.section {
    padding: var(--section-padding-y) 0;
    position: relative;
    overflow: hidden;
}

.section:nth-of-type(even) { background-color: var(--color-background-gray); }
.section:nth-of-type(odd) { background-color: var(--color-background-light); }
#logos { background-color: var(--color-background-light); }
#sobre { background-color: var(--color-background-gray); }
#servicos { background-color: var(--color-background-light); }
#avaliacoes { background-color: var(--color-background-gray); }
#contato { background-color: var(--color-background-light); }

.section-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: var(--spacing-lg);
    color: var(--color-primary);
    text-align: center;
}

/* ============================================ */
/* CARD CONTAINERS (Flexbox Layout) */
/* ============================================ */
.logo-container,
.card-deck {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch; /* Crucial for equal height boxes */
    gap: var(--card-gap);
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
    overflow: visible;
}

/* NO HORIZONTAL SCROLLBARS */
.logo-container::-webkit-scrollbar,
.card-deck::-webkit-scrollbar { display: none; }
.logo-container,
.card-deck { -ms-overflow-style: none; scrollbar-width: none; overflow-x: hidden; }


/* ============================================ */
/* INDIVIDUAL CARD STYLES (Common base) */
/* ============================================ */
.logo-box,
.card-custom {
    background-color: var(--color-background-light);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: var(--card-padding);
    box-shadow: var(--box-shadow-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; -- Replaced below for specific cards */
    min-height: auto; /* Height adjusts to content */
    height: 100%; /* Fills height set by align-items: stretch */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* <<< ADD: Prevent potential internal overflow visually */

    /* Flex Item Properties */
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(33.333% - var(--card-gap) * 2 / 3);
    max-width: calc(33.333% - var(--card-gap) * 2 / 3);
    min-width: 280px;
}

/* Card Hover Effect */
.logo-box:hover,
.card-custom:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-md);
}

/* ----- Logo Box Specific Alignment ----- */
.logo-box {
    justify-content: center; /* <<< CHANGE: Vertically center image & text */
    align-items: center; /* Horizontally center content */
}

.logo-box img {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin-bottom: var(--spacing-sm);
    filter: grayscale(30%);
    opacity: 0.9;
    transition: filter 0.3s ease, opacity 0.3s ease;
    flex-shrink: 0; /* Prevent image shrinking */
}
.logo-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
.logo-box p {
    font-size: 0.95rem;
    color: var(--color-text-medium);
    margin-top: 0; /* Remove auto margin */
    margin-bottom: 0;
    /* Text is already centered by .logo-box text-align: center */
}

/* ----- Card Custom Specific Alignment ----- */
.card-custom {
    justify-content: space-between; /* Keep default space-between for these */
}

.card-custom i {
    font-size: var(--card-icon-size);
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1;
    flex-shrink: 0; /* Prevent icon shrinking */
}
.card-custom h5 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}
.card-custom p {
    font-size: 1rem;
    color: var(--color-text-medium);
    margin-bottom: 0;
    flex-grow: 1; /* Allow text to take space */
}

/* Card Link Styling */
.card-link { position: relative; }
.card-link .stretched-link::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; content: ""; background-color: rgba(0, 0, 0, 0); }
.card-link:hover { cursor: pointer; }


/* ============================================ */
/* TESTIMONIALS / CAROUSEL SECTION */
/* ============================================ */
#avaliacoes .carousel {
    padding-bottom: 40px;
}
#avaliacoes .carousel-inner {
    overflow: hidden;
}

/* Container within each carousel item */
.carousel-cards-container {
    display: flex;
    flex-wrap: nowrap; /* PREVENT wrapping inside a slide */
    justify-content: flex-start;
    align-items: stretch; /* Makes cards in the same row equal height */
    gap: var(--card-gap);
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Individual testimonial cards */
.testimonial-card {
    background-color: var(--color-background-light);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: var(--card-padding);
    box-shadow: var(--box-shadow-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content top */
    min-height: auto; /* Height adjusts to content */
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* <<< ADD: Prevent potential internal overflow visually */

    /* Flex Item Properties */
    flex-grow: 0;
    flex-shrink: 0; /* PREVENT shrinking */
    flex-basis: calc(100% / 3 - var(--card-gap) * 2 / 3);
    max-width: calc(100% / 3 - var(--card-gap) * 2 / 3);
    min-width: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-md);
}

.testimonial-img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--spacing-sm) auto;
    border: 4px solid var(--color-background-light);
    box-shadow: var(--box-shadow-sm);
    flex-shrink: 0;
}

.testimonial-card .card-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.testimonial-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--color-primary);
}
.testimonial-card .text-muted.small {
    font-size: 0.85rem;
    margin-bottom: var(--spacing-xs);
}
.testimonial-card .text-warning {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-card .card-text { /* Quote */
    font-size: 1rem;
    color: var(--color-text-medium);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 0;
    flex-grow: 1;
    overflow-wrap: break-word; /* Ensure quote text wraps */
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next { width: 5%; opacity: 0.7; transition: opacity 0.3s ease; background: none; }
.carousel-control-prev:hover,
.carousel-control-next:hover { opacity: 1; }
.carousel-control-prev-icon,
.carousel-control-next-icon { background-color: rgba(44, 62, 80, 0.7); border-radius: 50%; width: 40px; height: 40px; background-size: 50% 50%; background-repeat: no-repeat; background-position: center; transition: background-color 0.3s ease; }
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover { background-color: var(--color-primary); }
.carousel-control-prev-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e"); }
.carousel-control-next-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); }


/* ============================================ */
/* CONTACT FORM SECTION (UNCHANGED) */
/* ============================================ */
.contact-form-section {}
.contact-form-container { max-width: 700px; margin: 0 auto; background-color: var(--color-background-light); padding: var(--spacing-lg); border-radius: var(--border-radius-md); box-shadow: var(--box-shadow-md); }
.form-control { border-radius: var(--border-radius-sm); border: 1px solid var(--color-border); padding: 12px 15px; font-size: 1rem; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.form-control:focus { border-color: var(--color-secondary); box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25); outline: none; }
textarea.form-control { resize: vertical; min-height: 120px; }
.was-validated .form-control:invalid, .form-control.is-invalid { border-color: #dc3545; background-image: url("..."); background-repeat: no-repeat; background-position: right calc(.375em + .1875rem) center; background-size: calc(.75em + .375rem) calc(.75em + .375rem); }
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); }
.invalid-feedback { display: none; width: 100%; margin-top: .25rem; font-size: .875em; color: #dc3545; }
.was-validated .form-control:invalid ~ .invalid-feedback, .form-control.is-invalid ~ .invalid-feedback { display: block; }
#formMensagem { margin-top: var(--spacing-sm); font-weight: 500; }

/* ============================================ */
/* WHATSAPP FLOAT BUTTON (UNCHANGED) */
/* ============================================ */
.whatsapp-float { position: fixed; bottom: var(--spacing-md); right: var(--spacing-md); z-index: 999; animation: pulse 1.8s infinite ease-in-out; }
.whatsapp-float a { font-size: 28px; color: var(--color-text-light); background: #25d366; width: 60px; height: 60px; border-radius: 50%; box-shadow: var(--box-shadow-md); display: flex; align-items: center; justify-content: center; transition: background-color 0.3s ease, transform 0.3s ease; }
.whatsapp-float a:hover { background: #128c7e; text-decoration: none; transform: scale(1.1); }
@keyframes pulse { 0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* ============================================ */
/* COOKIE CONSENT STYLES (UNCHANGED) */
/* ============================================ */
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background-color: rgba(44, 62, 80, 0.95); color: var(--color-text-light); padding: var(--spacing-sm) var(--spacing-md); z-index: 1000; display: none; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--spacing-sm); }
.cookie-banner span { flex-grow: 1; text-align: left; margin-right: var(--spacing-md); }
.cookie-banner a { color: var(--color-text-light); text-decoration: underline; font-weight: 500; }
.cookie-banner a:hover { text-decoration: none; }
.cookie-banner button { background-color: var(--color-background-light); color: var(--color-primary); border: none; padding: 8px 16px; border-radius: var(--border-radius-sm); cursor: pointer; transition: background-color .3s ease, color .3s ease; font-size: 0.9rem; font-weight: 500; flex-shrink: 0; }
.cookie-banner button:hover { background-color: #e9ecef; }
.cookie-popup { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 1001; display: flex; justify-content: center; align-items: center; padding: var(--spacing-md); opacity: 0; transition: opacity 0.3s ease, visibility 0s linear 0.3s; visibility: hidden; }
.cookie-popup.show { opacity: 1; visibility: visible; transition: opacity 0.3s ease, visibility 0s linear 0s; }
.cookie-popup-content { background: var(--color-background-light); padding: var(--spacing-lg); border-radius: var(--border-radius-md); box-shadow: var(--box-shadow-md); max-width: 600px; width: 90%; max-height: 90vh; overflow-y: auto; position: relative; transform: scale(0.95); transition: transform 0.3s ease; }
.cookie-popup.show .cookie-popup-content { transform: scale(1); }
.cookie-popup h2 { color: var(--color-primary); margin-bottom: var(--spacing-sm); font-size: 1.5rem; }
.cookie-popup p { color: var(--color-text-medium); line-height: 1.6; margin-bottom: var(--spacing-sm); font-size: 1rem; }
.cookie-popup a { color: var(--color-secondary); text-decoration: underline; font-weight: 500; }
.cookie-popup a:hover { color: var(--color-primary); }
.cookie-popup .close-button { position: absolute; top: var(--spacing-sm); right: var(--spacing-sm); background: none; border: none; font-size: 24px; line-height: 1; color: var(--color-text-medium); cursor: pointer; padding: 5px; transition: color .3s ease; }
.cookie-popup .close-button:hover { color: var(--color-accent); }
.cookie-popup .btn-primary { margin-top: var(--spacing-sm); width: 100%; }

/* ============================================ */
/* FOOTER (UNCHANGED) */
/* ============================================ */
.site-footer { background-color: var(--color-primary); color: rgba(255, 255, 255, 0.8); padding: var(--spacing-lg) 0; text-align: center; }
.site-footer h5 { font-size: 1.8rem; font-weight: 700; margin-bottom: var(--spacing-xs); color: var(--color-text-light); text-transform: uppercase; letter-spacing: 1px; }
.site-footer .footer-description { font-size: 1rem; margin-bottom: var(--spacing-md); color: rgba(255, 255, 255, 0.7); max-width: 600px; margin-left: auto; margin-right: auto; }
.site-footer .social-icons a { color: var(--color-text-light); margin: 0 var(--spacing-xs); font-size: 1.5rem; transition: color 0.3s ease, transform 0.3s ease; display: inline-block; }
.site-footer .social-icons a:hover { color: var(--color-secondary); transform: scale(1.2); text-decoration: none; }
.site-footer .footer-copyright { margin-top: var(--spacing-md); font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); }

/* ============================================ */
/* RESPONSIVE ADJUSTMENTS (Media Queries) */
/* ============================================ */

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    :root { --card-gap: var(--spacing-md); }
    .section-content-wrapper { padding: 0 var(--spacing-sm); }

    /* Logo/Service Cards: 2 per row */
    .logo-box, .card-custom { flex-basis: calc(50% - var(--card-gap) / 2); max-width: calc(50% - var(--card-gap) / 2); min-width: 0; }

    /* Testimonial Cards: 2 per row */
    .testimonial-card { flex-basis: calc(100% / 2 - var(--card-gap) / 2); max-width: calc(100% / 2 - var(--card-gap) / 2); }

    .navbar-collapse { background-color: rgba(44, 62, 80, 0.95); padding: var(--spacing-sm); margin-top: var(--spacing-xs); border-radius: var(--border-radius-sm); }
    .navbar-nav { text-align: center; }
    .navbar-dark .navbar-nav .nav-link { display: block; margin: 5px 0; }
    .hero { height: 80vh; }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    :root { --card-gap: var(--spacing-md); --section-padding-y: var(--spacing-lg); }
    .section-title { font-size: clamp(1.8rem, 5vw, 2.2rem); margin-bottom: var(--spacing-md); }
    .hero { height: 70vh; }

    /* Logo/Service Cards: Still 2 per row */
    .logo-box, .card-custom { flex-basis: calc(50% - var(--card-gap) / 2); max-width: calc(50% - var(--card-gap) / 2); }

    /* Testimonial Cards: Show 1 per slide */
    .testimonial-card { flex-basis: 100%; max-width: 100%; }

    .testimonial-img { width: 70px !important; height: 70px !important; }
    .testimonial-card .card-text { font-size: 0.95rem; }
    .contact-form-container { padding: var(--spacing-md); }
    .cookie-banner { flex-direction: column; text-align: center; }
    .cookie-banner span { margin-right: 0; margin-bottom: var(--spacing-xs); }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    :root { --card-gap: var(--spacing-sm); }
    .section-content-wrapper { padding: 0 var(--spacing-xs); }
    .hero { height: 65vh; padding-top: 70px; }
    .main-logo-container h1 { font-size: 2.5rem; }
    .hero h2 { font-size: 1.3rem; }
    .hero p#heroParagraph { font-size: 1rem; }
    .btn-primary { padding: 10px 20px; font-size: 0.9rem; }

    /* Logo/Service Cards: 1 per row */
    .logo-box, .card-custom { flex-basis: 100%; max-width: 100%; min-width: 0; padding: var(--spacing-sm); }

    /* Testimonial Cards: 1 per slide (already set above) */
    .testimonial-card { flex-basis: 100%; max-width: 100%; }

    .testimonial-img { width: 60px !important; height: 60px !important; }
    .testimonial-card .card-text { font-size: 0.9rem; }
    .contact-form-row .col-md-6 { width: 100%; }
    .contact-form-container { padding: var(--spacing-sm); }
    .whatsapp-float { bottom: var(--spacing-sm); right: var(--spacing-sm); width: 50px; height: 50px; font-size: 24px; }
    .site-footer { padding: var(--spacing-md) 0; }
    .site-footer h5 { font-size: 1.5rem; }
    .site-footer .footer-description { font-size: 0.9rem; }
}