/* assets/css/style.css */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
}

.navbar-brand img {
    height: 55px;
    
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://placehold.co/1920x800/007bff/ffffff?text=Fundo+Smart+Gestao') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #186bc4;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #007bff;
    border-radius: 2px;
}

.gdoor-feature-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 15px;
}

.gdoor-feature-item {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%; /* Garante que todos os cards tenham a mesma altura */
}

.gdoor-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.plan-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%; /* Garante que todos os cards tenham a mesma altura */
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.plan-card h3 {
    color: #007bff;
    font-weight: 700;
    margin-bottom: 20px;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.plan-card ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #555;
}

.plan-card ul li i {
    color: #28a745;
    margin-right: 10px;
}

.about-us-block {
    background-color: #e9ecef;
    padding: 60px 0;
    border-radius: 15px;
}

.about-us-block h3 {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-us-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

.video-section {
    background-color: #343a40;
    color: white;
    padding: 80px 0;
}

.video-section .btn-light {
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.video-section .btn-light:hover {
    background-color: #e2e6ea;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    margin: 15px; /* Adiciona margem para o carrossel */
    text-align: center;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #007bff;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-card h5 {
    color: #007bff;
    font-weight: 600;
}

.client-logo img {
    max-width: 150px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.additional-services-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%; /* Garante que todos os cards tenham a mesma altura */
}

.additional-services-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.additional-services-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 15px;
}

.blog-post-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%; /* Garante que todos os cards tenham a mesma altura */
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.blog-post-card img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    height: 200px;
    object-fit: cover;
}

.blog-post-card .card-body {
    padding: 25px;
}

.blog-post-card .card-title {
    color: #007bff;
    font-weight: 600;
    font-size: 1.3rem;
}

.blog-post-card .card-text {
    color: #6c757d;
}

.blog-post-card .text-muted {
    font-size: 0.9rem;
}

footer {
    background-color: #343a40;
    color: white;
    padding: 50px 0;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #007bff;
}

/* Estilos específicos para a página de Planos */
.plan-table th, .plan-table td {
    vertical-align: middle;
    text-align: center;
}

.plan-table th {
    background-color: #007bff;
    color: white;
    font-weight: 600;
}

.plan-table .table-success i {
    color: #28a745;
}

.plan-table .table-danger i {
    color: #dc3545;
}

.module-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.module-card h4 {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 15px;
}

.module-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #28a745;
}

/* Estilos específicos para a página de Serviços */
.service-item {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.service-item i {
    font-size: 3.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.service-item h3 {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Estilos específicos para a página Sobre Nós */
.mission-vision-values .card {
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.mission-vision-values .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.mission-vision-values .card-body {
    padding: 30px;
}

.mission-vision-values .card-title {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 15px;
}

.mission-vision-values .card-text {
    color: #555;
}

.mission-vision-values i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.ceo-section img {
    border-radius: 15px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

/* Estilos específicos para a página de Contato */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #1DA851;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Estilos para o mini blog */
.blog-post-detail img {
    border-radius: 15px;
    margin-bottom: 30px;
}

.blog-post-detail h1 {
    color: #007bff;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-post-detail .text-muted {
    font-size: 1rem;
    margin-bottom: 30px;
    display: block;
}

.blog-post-detail p {
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Animações */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .gdoor-feature-item, .plan-card, .testimonial-card, .additional-services-card, .blog-post-card, .module-card, .service-item, .mission-vision-values .card {
        margin-bottom: 30px; /* Adiciona espaçamento entre os cards em telas menores */
    }

    .client-logo img {
        max-width: 100px;
    }
}
