:root {
    --primary-blue: #02064b;
    --secondary-red: #e74c3c;
    --primary-blue-claro: #2563eb;
    --primary-red: #dc2626;
    --accent-yellow: #f39c12;
    --light-blue: #3498db;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue-claro), var(--primary-red));
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 30px 80px rgba(0, 0, 0, 0.15);
     
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

body {
    background: var(--light-gray);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden; 
}

/* Header Styles */
.logo {
    width: 90px;
    height: auto;
}

.qr-code{
    width: 80%;
    height: auto;

}
.hero-image {
            position: relative;
            animation: slideInRight 1s ease-out 0.4s both;
        }

.hero-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }
.hero-image:hover img {
            transform: scale(1.05);
        }


.img-blog {
    padding-top:25px ;
    width: 100%;
    height: auto;
    
}

/* Navbar Styles */
.navbar {
    background: var(--primary-blue) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white) !important;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-yellow) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* CTA Button */
.cta-button {
    width: auto;
    background: var(--secondary-red);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(231, 76, 60, 0.3);
    animation: pulse 1.5s infinite;
    display: inline-block;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    color: var(--white) !important;
    text-decoration: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    text-align: center;
}

/* Hero Section */
.hero {
    background: var(--primary-blue);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-blue);
    background-size: cover;
}

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

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

.hero .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    }



.hero-stats {
    margin-top: 3rem;
}

.hero-stat {
    text-align: center;
    margin-bottom: 1rem;
}

.hero-stat h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-yellow);
}

.hero-stat p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.img-cliente {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Services Section */
.services {
    margin-top: -200px;
    padding: 40px 0;
    background: var(--light-gray);
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-red);
    margin: 1rem 0;
}

/* Animations */
.animations {
    animation: fadeInUp 0.8s ease-in-out;
}

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

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background: var(--light-gray);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: linear-gradient(145deg, var(--light-gray), var(--white));
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.portfolio-item:hover::before {
    left: 100%;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    width: 100%;
    height: 150px;
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-weight: bold;
}

.portfolio-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.portfolio-item p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.view-button {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-button:hover {
    background: var(--primary-blue);
    transform: scale(1.05);
}

/* Process Section */
.process {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--gradient-primary) 0%, var(--light-gray) 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    color: var(--white);
}

.process h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.process-step p {
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-features {
    list-style: none;
    padding: 0;
}

.about-features li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.about-features i {
    color: var(--secondary-red);
    margin-right: 10px;
}

.img-sobre {
    width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background: var(--light-gray);
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.blog-image {
    height: 200px;
    background: linear-gradient(45deg, var(--primary-blue), var(--light-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.blog-content {
    padding: 1.5rem;
    
}

.blog-date {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    }

.blog-content h3{
    color: var(--primary-blue);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    font-size: 1.7rem;

    }

.blog-excerpt {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--secondary-red);
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    color: #c0392b;
    text-decoration: none;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--primary-blue);
    color: var(--white);
}

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

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin-right: 1rem;
    width: 30px;
    flex-shrink: 0;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-control {
    border: none;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 1rem;
    background: rgba(235, 242, 251, 0.9);
    width: 100%;
}


.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
    border-color: var(--accent-yellow);
    outline: none;
   
}

.res-mt{
   margin-bottom: 1.5rem;
}
/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 40px 0 20px;
    text-align: center;
}

#subir{
	position:fixed;
	bottom:0px;
	right:0px;
}

.social-links {
    margin: 2rem 0;
}

.list-unstyled li a {
    text-decoration: none;
    color: var(--white);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.list-unstyled li a:hover {
    color: var(--accent-yellow);
    text-decoration: none;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--accent-yellow);
    text-decoration: none;
}

.link-site {
    text-decoration: none;
    color: var(--white);
}

.link-site:hover {
    color: var(--accent-yellow);
    text-decoration: none;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    text-decoration: none;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2,
.section-header h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* CTA Sections */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-red) 0%, #c0392b 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.btn-white {
    background: var(--white);
    color: var(--secondary-red);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-white:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    color: var(--secondary-red);
    text-decoration: none;
}

/* Focus states for accessibility */
.nav-link:focus,
.cta-button:focus,
.btn-white:focus,
.form-control:focus {
    outline: 3px solid var(--accent-yellow);
    outline-offset: 2px;
    border-radius: 20px; /* ou um valor alto como 999px */
}

/* RESPONSIVE DESIGN */

/* Large screens (desktops) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* Medium screens (tablets) */
@media (max-width: 991px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero .lead {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-text {
        order: 2;
    }
    
    .img-sobre {
        width: 250px;
        margin-bottom: 2rem;        

    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .services {
        margin-top: -150px;
    }
    .hero-image {
        margin-top: 30px;
         
    }
    .blog-content h3 {
        margin-top: 20px;
        
    }
    
}

/* Small screens (phones) */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
        padding: 0.5rem 1rem;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .hero .lead {
        font-size: 1.6rem;
    }
    
    .hero-stat h3 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-header h2,
    .section-header h3 {
        font-size: 2rem;
    }
    .img-sobre {
        order: 1;
        margin-bottom: 1rem;        

    }
    
    .service-card {
        padding: 1.5rem;
        
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .services {
        margin-top: -100px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-item {
        padding: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process h3 {
        font-size: 1.8rem;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .btn-white {
        padding: 12px 25px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    
    .blog-image {
        height: 150px;
        font-size: 2rem;
    }
    .hero-image {
        margin-top: 30px;
         
    }
    
    .blog-content {
        padding: 1rem;
        margin-top: 1rem;
        
    }
    .blog-content h3 {
        margin-top: 30px;
        
    }
    
}

/* Extra small screens */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1rem;
        
    }
    
    .portfolio-item {
        padding: 1rem;
    }
    
    .process-step {
        padding: 1rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .form-control {
        padding: 12px;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .logo {
        width: 70px;
    }
    .hero-image {
        margin-top: 30px;
         
    }
    .blog-content h3 {
        margin-top: 30px;
        
    }
}

.heading {
	text-align: center;
	width: 100%;
	float: left;
	padding-bottom:20px;
}
.heading h5 {
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #292929;
	font-size: 7vw;
	color: transparent;
	font-weight: 600;
	letter-spacing: 0.8rem;
	opacity: 0.05;
	pointer-events: none;
	margin: 0px;
	padding: 0px;
}
.heading h2 {
	font-weight: 600!important;
	color: #292929;
	margin: 0px;
	padding: 0px;
	position: relative;
	bottom:70px;
}
.heading-border {
	height: 4px;
	width:40px;
	margin-bottom:10px;
	margin-top: 0px;
	display: inline-block;
	background-color:#3B5998;
}
@media only screen and (max-width:768px) {
   .heading h2 {
   bottom: 10px;
   font-size: 18px;
   }
   .heading-border {
   height:2px;
   width: 20px;
   margin-bottom:6px;
   margin-top: 0px;
  }
  .blog-content h3 {
    margin-top: 30px;
        
   }

}
.contact-info {
	width: 100%;
	float: left;
	background-color: #fff;
	padding: 10px 30px 10px 30px;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	box-shadow: 0 0.375rem 1.5rem 0 rgba(140, 152, 164, 0.125);
	margin-bottom:20px;
}
.contact-left h3 {
	border-left: 2px solid #3B5998;
	padding-left: 10px;
	color: #565656;
	font-size: 16px;
	font-weight: 600;
	width: 100%;
	float: left;
	margin-top: 20px;
}
.contact-left p {
	padding-left: 10px;
	margin-bottom: 15px;
}
.contact-left a {
	padding-left: 10px;
	margin-bottom:7px;
	width: 100%;
	float: left;
	text-decoration:none;
	color:black;
}
.contact-info ul {
	width: 100%;
	float: left;
	margin-top: 20px;
	list-style: none;
	padding-left: 0px;
}
.contact-info ul li {
	float: left;
	padding-left: 10px;
}
.contact-info ul li i {
	font-size: 22px;
	color: black;
}
.contact-form {
	border: 1px solid #e2e8f0;
	padding: 30px;
	border-radius: 8px;
	background-color: #fff;
	box-shadow: 0 0.375rem 1.5rem 0 rgba(140, 152, 164, 0.125);
}
.contact-form h3 {
	border-left: 12px solid #3B5998;
	padding-left: 10px;
}
.contact-form .form-control {
	padding: 8px;
}
@media only screen and (max-width:768px) {
     .contact-left p {
     padding-left: 10px;
     margin-top: 11px;
    }
    .blog-content h3 {
        margin-top: 30px;
        
    }
  }

