/* Global Styles */
html {
    scroll-behavior: smooth;
}

/* Container customizado para maior largura */
.container {
    max-width: 95%;
    width: 95%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

:root {
    --primary-color: #091A30;     /* Fundo quase preto-azulado */
    --primary-gradient: linear-gradient(135deg, #17314F 0%, #091A30 100%);
    --secondary-color: #002B49;   /* Azul corporativo */
    --secondary-color-alt: #F05026; /* Laranja vibrante - mantido para itens em fundo escuro */
    --secondary-gradient: linear-gradient(135deg, #002B49 0%, #17314F 100%);
    --tertiary-color: #8ED8F7;    /* Azul-céu / ciano */
    --accent-color: #BDD63D;      /* Verde-limão */
    --navy-blue: #17314F;         /* Azul-marinho escuro */
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #343a40;
    --white: #ffffff;
    --black: #212529;
    --card-shadow: 0 10px 30px rgba(9, 26, 48, 0.15);
    --transition-fast: all 0.3s ease;
    --transition-medium: all 0.4s ease-in-out;
}

body.contato-page {
    background: var(--white) !important;
}

body {
    font-family: 'AvenirLTStd-Light';
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'AvenirLTStd-Light';
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

a {
    color: var(--tertiary-color);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
}

a:hover {
    color: var(--accent-color);
}

.btn-primary {
    background: var(--navy-blue);
    border: none;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-medium);
    box-shadow: 0 4px 12px rgba(9, 26, 48, 0.2);
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 43, 73, 0.25);
}

.btn-secondary {
    background: var(--secondary-color);
    border: none;
    border-radius: 4px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-medium);
    box-shadow: 0 4px 12px rgba(0, 43, 73, 0.2);
}

.btn-secondary:hover {
    background: #003B69;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 43, 73, 0.3);
}

/* Botões em áreas escuras mantêm a cor laranja para contraste */
.hero-btn.btn-secondary,
.navbar .btn-secondary,
.footer .btn-secondary,
.bg-primary-dark .btn-secondary,
.bg-primary-medium .btn-secondary {
    background: var(--secondary-color-alt);
    box-shadow: 0 4px 12px rgba(240, 80, 38, 0.2);
}

.hero-btn.btn-secondary:hover,
.navbar .btn-secondary:hover,
.footer .btn-secondary:hover,
.bg-primary-dark .btn-secondary:hover,
.bg-primary-medium .btn-secondary:hover {
    background: #E64821;
    box-shadow: 0 6px 15px rgba(240, 80, 38, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.section-padding {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    margin-bottom: 3rem;
    text-align: center;
}

.section-title h2 {
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title h2:after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Estilo para títulos h2 com fonte mais leve */
.heading-style-h2 {
    font-size: 3rem;
    font-weight: 200;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    background-color: rgba(9, 26, 48, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar .navbar-brand {
    padding: 0;
}

.navbar .navbar-nav .nav-link {
    color: var(--white);
    font-weight: 600;
    font-family: 'AvenirLTStd-Light';
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition-fast);
}

/* Sublinhado do menu */
.navbar .navbar-nav .nav-link {
    position: relative;
    overflow: hidden;
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--tertiary-color);
    transform: translateX(-50%);
    transition: all 0.3s ease;
    opacity: 0;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link:focus::after,
.navbar .navbar-nav .nav-link.active::after {
    width: 60%;
    opacity: 0.9;
}

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

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Dropdown Menu Minimalista */
.navbar .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(9, 26, 48, 0.1);
    margin-top: 0.8rem;
    padding: 0.5rem 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease-out;
    display: block;
}

.navbar .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar .dropdown-item {
    color: var(--primary-color);
    font-weight: 500;
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.25s ease;
    position: relative;
    background: transparent;
    margin: 0 0.5rem;
    border-radius: 2px;
    width: calc(100% - 1rem);
}

.navbar .dropdown-item:not(:last-child) {
    margin-bottom: 0.15rem;
}

.navbar .dropdown-item:hover, 
.navbar .dropdown-item:focus {
    background: rgba(0, 43, 73, 0.03);
    color: var(--secondary-color-alt);
    padding-left: 1.5rem;
    transform: translateX(2px);
}

.navbar .dropdown-item.active, 
.navbar .dropdown-item:active {
    background: rgba(240, 80, 38, 0.05);
    color: var(--secondary-color-alt);
}

/* Seta do dropdown mais sutil */
.navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.45em;
    vertical-align: 0.12em;
    content: "";
    border-top: 0.25em solid;
    border-right: 0.25em solid transparent;
    border-bottom: 0;
    border-left: 0.25em solid transparent;
    transition: transform 0.2s ease;
    opacity: 0.8;
}

.navbar .dropdown-toggle.show::after {
    transform: rotate(-180deg);
}

/* Efeito de hover no item do menu principal */
.navbar .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Ajuste para mobile */
@media (max-width: 991.98px) {
    .navbar .dropdown-menu {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        padding: 0.25rem 0.5rem;
        margin: 0.25rem 0 0 1rem;
        border: none;
        border-left: 1px solid rgba(0, 43, 73, 0.1);
        transform: none;
        opacity: 1;
        display: none;
    }
    
    .navbar .dropdown-menu.show {
        display: block;
    }
    
    .navbar .dropdown-item {
        padding: 0.5rem 0.75rem;
        margin: 0.15rem 0;
        width: 100%;
    }
    
    .navbar .dropdown-item:hover,
    .navbar .dropdown-item:focus {
        padding-left: 1rem;
        transform: none;
    }
}

.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin-top: 0.5rem;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    color: var(--primary-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--secondary-color);
}

/* Seção de frase de efeito final */
.bg-impact {
    background: var(--navy-blue);
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--primary-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1), 0 10px 30px rgba(0, 0, 0, 0.1);
}

.impact-statement-section {
    padding: 5rem 0;
    position: relative;
}

.impact-quote h2 {
    color: var(--white);
    position: relative;
    display: inline-block;
}

.impact-quote h2:after {
    content: '';
    position: absolute;
    display: block;
    width: 100px;
    height: 3px;
    background: var(--accent-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.impact-blockquote {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-left: none;
    padding: 1.5rem;
}

.impact-blockquote:before {
    content: '\201C';
    position: absolute;
    left: -10px;
    top: -30px;
    font-size: 5rem;
    font-family: 'AvenirLTStd-Light';
    color: rgba(189, 214, 61, 0.3); /* var(--accent-color) com transparência */
    z-index: 1;
}

.impact-blockquote .blockquote-footer {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.impact-blockquote cite {
    font-style: normal;
    font-weight: 500;
    color: var(--accent-color);
}

.impact-shape-1 {
    background-color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
}

.impact-shape-2 {
    background-color: rgba(255, 255, 255, 0.04);
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    border-radius: 50% 50% 70% 30% / 50% 50% 30% 70%;
    z-index: 0;
}

/* Botão de contato na navbar */
.navbar .nav-item.contact-btn .nav-link {
    background: var(--secondary-color);
    padding: 0.6rem 1.5rem;
    margin-left: 0.5rem;
    border-radius: 4px;
    transition: var(--transition-medium);
    box-shadow: 0 4px 12px rgba(240, 80, 38, 0.2);
}

.navbar .nav-item.contact-btn .nav-link:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(166, 124, 82, 0.3);
}

.navbar .nav-item.contact-btn .nav-link::after {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 9rem 0 7rem;
    overflow: hidden;
}

.hero.with-image {
    background-image: linear-gradient(rgba(0, 43, 73, 0.5), rgba(0, 43, 73, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
}

.hero.hero-with-bg {
    background-image: url('../images/background-office.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 43, 73, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
}

/* Hero Banner texto azul para página de contato */
body.contato-page .service-detail-banner h1,
body.contato-page .service-detail-banner p {
    color: var(--secondary-color) !important;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-medium);
    margin-bottom: 30px;
    height: 100%;
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-top: 4px solid var(--secondary-color);
}

.service-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-card-body {
    padding: 2rem;
}

.service-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.service-card-title:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.service-card-text {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

/* Features */
.feature-box {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
}

.feature-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* About / Company */
.about-img {
    height: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}

.about-content {
    padding: 2rem 0;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: 5px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-card:before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    font-family: 'AvenirLTStd-Light';
    color: var(--secondary-color);
    opacity: 0.3;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    margin-top: 1.5rem;
    color: var(--primary-color);
}

.testimonial-position {
    color: var(--secondary-color);
    font-style: italic;
}

/* CTA Section */
.cta-section {
    background: var(--white) !important;
    color: var(--primary-color);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

body.contato-page section {
    background: var(--white) !important;
    box-shadow: none !important;
}

.cta-section:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(166, 124, 82, 0.1);
    top: -150px;
    right: -150px;
}

.cta-section:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(166, 124, 82, 0.1);
    bottom: -100px;
    left: -100px;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 3rem;
    margin-bottom: 3rem;
}

.contact-form .form-control {
    border-radius: 0;
    border: 1px solid #ced4da;
    padding: 0.8rem 1rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.contact-form label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: var(--light-gray);
    border-radius: 5px;
    padding: 3rem;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.contact-info-item p {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #091A30;
    color: var(--white);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer ul li a:hover {
    color: var(--white);
    text-decoration: none;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: var(--white);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* Contact page: ensure social icons are visible on white background */
body.contato-page .social-icons a {
    background: transparent;
    color: var(--primary-color);
}

body.contato-page .social-icons a:hover {
    color: var(--secondary-color);
    background: transparent;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-bottom p {
    margin-bottom: 0;
}

/* Service Detail Page */
.service-detail-banner {
    background-color: var(--primary-color);
    padding: 5rem 0;
    color: var(--white);
    text-align: center;
}

.service-detail-banner h1 {
    color: var(--white);
}

.service-detail-content {
    padding: 5rem 0;
}

.service-icon-box {
    text-align: center;
    padding: 2rem;
    border-radius: 5px;
    background: var(--light-gray);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-icon-box:hover {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-icon-box i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* About Page */
.team-member {
    text-align: center;
    margin-bottom: 3rem;
}

.team-img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 5px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--dark-gray);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--medium-gray);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12px;
    background-color: var(--white);
    border: 4px solid var(--secondary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid var(--white);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--white);
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid var(--white);
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--white) transparent transparent;
}

.right::after {
    left: -12px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--white);
    position: relative;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-year {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .service-card-img {
        height: 180px;
    }
    
    .about-img {
        min-height: 400px;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 4rem 0 3rem;
        height: auto !important;
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        text-align: center;
        max-width: 100%;
    }
    
    .service-card-img {
        height: 160px;
    }
    
    .about-img {
        min-height: 300px;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        margin-top: 2rem;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-container::before {
        left: 60px;
        border: medium solid var(--white);
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--white) transparent transparent;
    }
    
    .left::after, .right::after {
        left: 18px;
    }
    
    .right {
        left: 0%;
    }
    
    .navbar .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .navbar .nav-item.contact-btn {
        margin-top: 1rem;
    }
    
    .footer {
        text-align: center;
        padding: 3rem 0 0;
    }
    
    .footer .row > div {
        margin-bottom: 2rem;
    }
    
    body.contato-page .page-title {
        margin-top: 6rem !important;
    }
}

@media (max-width: 575px) {
    .section-padding {
        padding: 2rem 0;
    }
    
    .hero {
        padding: 3rem 0 2rem;
        min-height: 50vh;
    }
    
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 2rem 1rem;
    }
    
    .contact-info {
        padding: 2rem 1rem;
    }
}

/* Alerts */
.alert {
    border-radius: 0;
    border: none;
    margin-bottom: 30px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

/* Flash messages */
.flashes {
    margin-bottom: 20px;
}

/* Ajuste de espaçamento do título na página de contato */
body.contato-page .page-title {
    margin-top: 8rem !important;
}