* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}
header { 
    background-color: #07092c;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    top: 0;
    z-index: 1000;
}
.logo{ margin-left: 22%;}
nav ul {
    list-style: none;
    text-align: center;
}
nav ul li {
    display: inline;
    margin: 0 20px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #1a73e8;
}
.section {
    padding: 100px 0;
    text-align: center;
    transition: background-color 0.3s ease-in-out;
}
.section:hover {
    background-color: #e9ecef;
}
#home {
    background: #090a2c;
    color: #fff;
    padding-top: 70px;
    height: 86vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.5s ease-in-out;
    background-attachment: fixed;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.card{height:350px}
.card-min{height:200px}

.mx-auto{max-width: 70%;margin-bottom:100px}
    
#home h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInFromLeft 1s ease-in-out;
    color: #fff;
}
@keyframes slideInFromLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}
#home p {
    font-size: 24px;
    margin-bottom: 40px;
    animation: slideInFromRight 1s ease-in-out;
    color: #fff;
}
@keyframes slideInFromRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}
button {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
button:hover {
    background-color: #218838;
    transform: translateY(-3px);
}
button:active {
    transform: translateY(-1px);
}
#about, #services, #contact {
    background-color: #fff;
    color: #333;
}
.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

.introducao{text-align: justify;}

h2,h3,h4 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
h2::after,h3::after,h4::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #1a73e8;
    margin: 10px auto;
}
p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
ul {
    list-style: none;
    padding: 0;
}
ul li {
    font-size: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
ul li i {
    margin-right: 10px;
    color: #1a73e8;
}
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
form:hover {
    transform: scale(1.02);
}
form label {
    margin: 10px 0 5px;
    font-size: 18px;
}
form input, form textarea {
    width: 100%;
    max-width: 500px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
    transition: border-color 0.3s ease-in-out;
}
form input:focus, form textarea:focus {
    border-color: #1a73e8;
}
form button {
    width: 100%;
    max-width: 500px;
    padding: 15px;
    font-size: 18px;
    border-radius: 5px;
}
.profile{    width: 50%;
    float: left;
    margin: 30px;}
footer { color: #fff; text-align: center; padding: 20px 0; width: 100%; bottom: 0; box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);}@media (max-width: 768px) { nav ul li { display: block; margin: 10px 0; } 
    
    .section { padding: 50px 0; } #home h1 { font-size: 36px; } #home p { font-size: 18px; } form input, form textarea, form button { max-width: 100%; }}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; }}@keyframes slideInFromLeft { from { transform: translateX(-100%); } to { transform: translateX(0); }}

@keyframes slideInFromRight { from { transform: translateX(100%); } to { transform: translateX(0); }}





nav ul li a { font-weight: bold;}.section { transition: background-color 0.3s ease-in-out;}.section:hover { background-color: #e9ecef;}button { box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);}button:active { transform: translateY(-1px);}form input, form textarea { transition: border-color 0.3s ease-in-out;}
form input:focus, form textarea:focus { border-color: #1a73e8;}


footer { background-color: #0056b3;}
footer { background: linear-gradient(to right, #080909, #090d3c); color: #fff; text-align: center; padding: 40px 0; position: relative; width: 100%; bottom: 0; box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);}footer a { color: #fff; text-decoration: none; transition: color 0.3s;}footer a:hover { color: #1a73e8;}footer .container { max-width: 1200px; margin: 0 auto;}footer .row { display: flex; justify-content: space-between; align-items: center;}footer .col-md-4 { flex: 1; margin: 10px 0;}footer .col-md-4 h5 { font-size: 18px; margin-bottom: 15px;}footer .col-md-4 p { font-size: 16px; margin-bottom: 10px;}footer .col-md-4 a { margin: 0 5px;}footer hr { border-top: 1px solid #fff; margin: 20px 0;}@media (max-width: 768px) { footer .row { flex-direction: column; } footer .col-md-4 { margin-bottom: 20px; }}

.col-md-6 .card .card-body i{color:#4b85cf}

#home { background-attachment: fixed;}

.nav-item a:hover {
    transform: scale(1.2);
    transition: transform .2s;
}

.container .learn-more{    height: 60px; width: 200px; padding-top: 13px;}

.nav-link:hover{text-decoration: underline;}

.mx-auto .form-group{ width: 300px; }

.whatsapp-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            color: white;
            border: none;
            border-radius: 20px;
            padding: 15px;
            font-size: 18px;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            z-index: 1000;
        }
        .whatsapp-button:hover {
            background-color: #1EBE57;
        }


@media only screen and (max-width: 600px) {
    #home {
        padding-top: 0px;
        height: 70vh;
    }
    .card{height:100%}
    .col-md-6{margin-top:20px}
    .card-min {display: inline-table;}
    .btn-success,footer{margin-bottom: 40px;}
    .container{width:95%;}
    .profile{margin: 10px;}
}    

.btn-block{width:50%;margin:0 auto;min-width: 200px;padding: 20px;}