/* Global Styles */
:root {
    --primary-color: #28a745;
    --secondary-color: #343a40;
    --light-gray: #f8f9fa;
    --primary-dark: #074258;
    --primary: #0d89a4;
    --primary-light: #0bbae2;
    --secondary: #0ba2c4;
    --gray-bg: #f6fcff;
    --white: #fff;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--primary-dark);
    background: var(--white);
    padding-top: 75px;
}

/* Header Styles */
.navbar {
    background: linear-gradient(135deg, #0d89a4 0%, #074258 100%);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(13, 137, 164, 0.98) 0%, rgba(7, 66, 88, 0.98) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 60px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0.4rem 1.1rem;
    transition: all 0.3s ease;
    font-size: 1.15rem;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #ffffff;
}

.navbar-dark .navbar-nav .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.navbar-dark .navbar-nav .dropdown-item {
    color: var(--primary-dark);
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .dropdown-item:hover {
    background-color: rgba(13, 137, 164, 0.1);
    color: var(--primary);
}

.btn-outline-light {
    border-width: 2px;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: var(--primary-dark);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: linear-gradient(135deg, rgba(13, 137, 164, 0.98) 0%, rgba(7, 66, 88, 0.98) 100%);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }
    
    .navbar-nav {
        margin-bottom: 1rem;
    }
    
    .btn-outline-light {
        width: 100%;
        text-align: center;
    }
    .navbar-brand img {
        height: 45px;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        height: 36px !important;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/imgs/6.png') center/cover no-repeat;
    opacity: 0.8;
    animation: zoomIn 5s infinite alternate;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(7, 66, 88, 0.85) 0%,
        rgba(13, 137, 164, 0.75) 50%,
        rgba(11, 186, 226, 0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--white);
    line-height: 1.2;
}

.hero-content .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: var(--white);
    opacity: 0.9;
}

.hero-content .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background-color: var(--primary-light);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: var(--primary);
}

.hero-content .btn i {
    margin-right: 8px;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Section */
.stats-section {
    background-color: white;
}

.stat-box {
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--light-gray);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Services Section */
.service-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* AVCB Section */
.avcb-section {
    background-color: var(--primary);
    color: var(--white);
}

.avcb-section ul li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-info {
    background-color: var(--primary-light);
    color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.contact-section a[href^="mailto"],
.contact-section a[href^="https://wa.me"] {
    color: var(--primary) !important;
    text-decoration: none !important;
    transition: color 0.2s, text-decoration 0.2s;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.contact-section a[href^="mailto"]:hover,
.contact-section a[href^="https://wa.me"]:hover {
    color: var(--primary-dark) !important;
    text-decoration: underline !important;
}

/* Ajuste para o e-mail não quebrar feio */
.contact-section [style*="word-break: break-all"] {
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
}

/* Cookie Alert */
.cookie-alert {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 0;
    z-index: 1000;
}

.cookie-alert .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Footer */
footer {
    background-color: var(--primary-dark) !important;
    color: var(--white);
}

footer h5 {
    color: white;
    margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .stat-box {
        margin-bottom: 1rem;
    }

    .cookie-alert .container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-alert button {
        margin-top: 1rem;
    }
}

/* Button Styles */
.btn-success {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-success:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

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

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

/* --- Custom styles moved from <head> of index.html --- */
h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--primary-dark);
}

section {
    padding: 4rem 0;
}

.text-muted, .small, .lead, .service-features, .footer-site, .navbar, .btn, .form-control {
    font-weight: 300 !important;
}

.card, .service-card-new {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 4px 24px 0 rgba(11, 186, 226, 0.10);
    border: 1px solid #e0f7fa;
    padding: 2rem;
    transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover, .service-card-new:hover {
    box-shadow: 0 8px 32px 0 rgba(11, 186, 226, 0.18);
    transform: translateY(-6px) scale(1.03);
}

.btn, .service-card-link {
    background: var(--primary);
    color: var(--white);
    border-radius: 2rem;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border: none;
    transition: background 0.2s;
}

.btn:hover, .service-card-link:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    width: 100%;
    max-width: 100%;
}

.service-card-new {
    min-width: 0;
    max-width: 100%;
}

.service-card-new {
    background: var(--white);
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px 0 rgba(11, 186, 226, 0.10), 0 1.5px 6px 0 rgba(7, 66, 88, 0.08);
    width: 320px;
    min-height: 320px;
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-align: center;
}

.service-card-new:hover {
    background: linear-gradient(135deg, var(--primary-light) 60%, var(--primary) 100%);
    color: var(--white);
    box-shadow: 0 8px 32px 0 rgba(11, 186, 226, 0.18), 0 3px 12px 0 rgba(7, 66, 88, 0.12);
}

.service-card-new:hover .service-icon {
    color: var(--white);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 1.2rem;
    transition: color 0.3s;
}

.service-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    transition: color 0.3s;
}

.service-card-new:hover .service-card-title {
    color: var(--white);
}

.service-card-desc {
    font-size: 1.05rem;
    color: var(--primary-dark);
    opacity: 0.85;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
}

.service-card-new:hover .service-card-desc {
    color: var(--white);
    opacity: 1;
}

.service-card-link {
    margin-top: auto;
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: var(--primary-light);
    color: var(--white);
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.3s, color 0.3s;
}

.service-card-new:hover .service-card-link {
    background: var(--white);
    color: var(--primary-dark);
}

.stats-section, .stats-header, .stats-header h2, .stats-header p, .stats-grid, .stat-box, .stat-box:hover, .stat-box h2, .stat-box p {
    display: none !important;
}

.services-section {
    background: linear-gradient(135deg, #eafaff 60%, #e0f7fa 100%);
    padding: 5rem 0;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2 {
    color: var(--primary-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-card-new {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-new:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1199.98px) {
    .services-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .services-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .navbar-brand img {
        height: 60px;
    }
    .navbar.scrolled .navbar-brand img {
        height: 45px;
    }
    .navbar-nav {
        gap: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content .lead {
        font-size: 1.1rem;
    }
    .hero-content .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    .stats-section {
        padding: 3rem 0;
    }
    .stats-header h2 {
        font-size: 2rem;
    }
    .stats-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Ajustes responsivos adicionais */
@media (max-width: 991.98px) {
    .testimonial-section .row > div {
        margin-bottom: 2rem;
    }
    .testimonial-section .bg-white {
        min-height: 350px;
        padding: 2rem 1rem 3.5rem 1rem;
    }
    .testimonial-section img.rounded-circle {
        width: 64px !important;
        height: 64px !important;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .about-image img {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .testimonial-section .bg-white {
        min-height: 320px;
        padding: 1.5rem 0.5rem 3rem 0.5rem;
    }
    .testimonial-section .fw-bold {
        font-size: 1rem;
    }
    .testimonial-section p,
    .testimonial-section .fst-italic {
        font-size: 0.98rem !important;
    }
    .footer-site {
        font-size: 0.9rem;
        padding: 1rem 0 0.5rem 0;
    }
    .navbar-brand img {
        height: 40px !important;
    }
}
/* --- End custom styles --- */

/* Padronização dos ícones dos cards de serviço */
.service-card .icon-box {
  color: var(--primary-light) !important;
  transition: color 0.3s;
}
.service-card:hover .icon-box {
  color: var(--primary-dark) !important;
}

/* Tamanho dos ícones dos cards de serviço */
.service-card .icon-box i {
  font-size: 2.5rem;
}

/* Remover cor de link dos textos das listas dos cards */
.service-card .service-features a,
.service-card .service-features a:visited,
.service-card .service-features a:active {
  color: inherit !important;
  text-decoration: none !important;
  font-weight: 400;
}
.service-card .service-features a:hover {
  text-decoration: underline !important;
  color: var(--primary-dark) !important;
}

.service-feature-item {
    cursor: pointer;
    padding: 4px 0;
}

.service-feature-item:hover {
    color: var(--primary) !important;
    transform: translateX(5px);
}

/* Partners Section */
.partner-logo img:hover {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
    transform: scale(1.05);
}

.partner-logo {
    padding: 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-brand .brand-text {
    color: #fff;
    font-size: 1.18rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.1;
    white-space: nowrap;
    text-shadow: 0 2px 6px rgba(0,0,0,0.18);
}

@media (max-width: 991.98px) {
    .navbar-brand .brand-text {
        font-size: 1rem;
    }
    .partner-logo img {
        filter: none !important;
        opacity: 1 !important;
    }
}
@media (max-width: 575.98px) {
    .navbar-brand .brand-text {
        font-size: 0.92rem;
    }
}

.contact-section a[href^="mailto"] {
    white-space: nowrap;
}

.apresentacao-box {
    background: #bdeaf6;
    border-radius: 8px;
    padding: 1.2rem 1.5rem 1.2rem 1.5rem;
    box-shadow: 0 2px 8px rgba(13,137,164,0.06);
    margin-bottom: 1.2rem;
}
.apresentacao-list {
    color: var(--primary-dark);
    font-size: 1rem;
    margin-top: 0.7rem;
    margin-bottom: 0;
    padding-left: 1.2rem;
}
.treinamento-card {
    background: #bdeaf6;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(13,137,164,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.treinamento-card:hover {
    box-shadow: 0 6px 18px rgba(13,137,164,0.13);
    transform: translateY(-4px) scale(1.03);
}
.treinamento-icon {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}
.treinamento-title {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}
@media (max-width: 767.98px) {
    .apresentacao-box {
        padding: 1rem 0.7rem;
    }
    .treinamento-card {
        min-height: 100px;
        padding: 1rem 0.5rem;
    }
    .treinamento-title {
        font-size: 0.98rem;
    }
    .treinamento-icon {
        font-size: 1.7rem;
    }
}

.treinamentos-list {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.08rem;
    color: var(--primary-dark);
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.treinamentos-list > li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.7rem;
    padding-left: 0.2rem;
    position: relative;
}
.treinamentos-list > li::before {
    content: "\f26b";
    font-family: "bootstrap-icons";
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}
.treinamentos-list ul {
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
    margin-left: 1.7rem;
    padding-left: 0.5rem;
}
.treinamentos-list ul li {
    font-size: 0.98rem;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
    display: list-item;
    list-style: disc inside;
    padding-left: 0.5rem;
}
.treinamentos-list .text-muted {
    font-size: 0.97rem;
    color: var(--primary) !important;
    opacity: 0.85;
}
@media (max-width: 575.98px) {
    .treinamentos-list {
        font-size: 0.98rem;
    }
    .treinamentos-list > li {
        gap: 0.4rem;
        margin-bottom: 0.5rem;
    }
}

.treinamentos-hero-section.hero-section {
    background: linear-gradient(135deg, #0d89a4 0%, #074258 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 0;
}
.hero-img-treinamentos {
    max-width: 480px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 24px 0 rgba(11, 186, 226, 0.10);
}
@media (max-width: 991.98px) {
    .treinamentos-hero-section.hero-section {
        min-height: unset;
        padding: 2.5rem 0 1.5rem 0;
    }
    .hero-img-treinamentos {
        max-width: 320px;
        margin-bottom: 1.5rem;
    }
}
@media (max-width: 767.98px) {
    .treinamentos-hero-section.hero-section {
        padding: 1.5rem 0 0.5rem 0;
    }
    .hero-img-treinamentos {
        max-width: 90vw;
        margin-bottom: 1rem;
    }
    .apresentacao-box {
        padding: 1rem 0.7rem;
    }
} 