/* Reset e estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #008080;
    --secondary-color: #20B2AA;
    --accent-color: #00CED1;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #fff;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent-color);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-links a.btn-whatsapp {
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.nav-links a.btn-client {
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a.btn-client:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    background: linear-gradient(135deg, #1a1a1a, #333);
    overflow: hidden;
    padding: 4rem 0;
}

.hero .container {
    position: relative;
    z-index: 2;
    height: calc(80vh - 8rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
    padding-top: 3rem;
}

.hero-slide.active {
    display: flex;
    opacity: 1;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 500px;
    color: var(--white);
    position: relative;
    z-index: 1;
    margin-top: 3rem;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 0.8rem;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--white);
    border-radius: 2px;
    opacity: 0.8;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--white);
    max-width: 700px;
}

.hero-content p span {
    display: block;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content p span:nth-child(1) {
    animation-delay: 0.2s;
    font-weight: 600;
}

.hero-content p span:nth-child(2) {
    animation-delay: 0.4s;
    font-style: italic;
}

.hero-content p span:nth-child(3) {
    animation-delay: 0.6s;
    font-weight: 500;
}

.hero-content p span::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: bold;
    opacity: 0;
    transform: translateX(-10px);
    animation: slideIn 0.5s ease forwards;
    animation-delay: calc(0.2s * var(--i, 0));
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.4s;
    margin-top: 2rem;
    width: 100%;
    justify-content: flex-start;
}

.hero-buttons .btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 180px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    white-space: nowrap;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.hero-buttons .btn:hover::before {
    transform: translateX(0);
}

.hero-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.hero-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 300px;
    max-height: 400px;
    padding: 0;
    margin-left: 2rem;
    margin-top: 3rem;
}

.hero-image img {
    max-width: 80%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    transform: scale(1.2);
    margin-right: -1rem;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: scale(1.2) translateY(0px);
    }
    50% {
        transform: scale(1.2) translateY(-10px);
    }
    100% {
        transform: scale(1.2) translateY(0px);
    }
}

.hero-image:hover img {
    animation-play-state: paused;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card .features {
    list-style: none;
    margin-top: 1.5rem;
    text-align: left;
}

.service-card .features li {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card .features i {
    font-size: 1rem;
    color: var(--primary-color);
    margin: 0;
}

/* Plans Section */
.plans {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.plans h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.plan-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--accent-color);
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: var(--accent-color);
}

.plan-header {
    margin-bottom: 30px;
}

.plan-header h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.price {
    font-size: 36px;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.price span {
    font-size: 16px;
    color: var(--text-color);
    font-weight: normal;
}

.plan-header p {
    color: var(--text-color);
    font-size: 14px;
    margin-top: 5px;
}

.plan-card .features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
    flex-grow: 1;
}

.plan-card .features li {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-card .features i {
    color: var(--primary-color);
    font-size: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    width: 100%;
    margin-top: auto;
}

.btn-primary i {
    font-size: 1.2rem;
}

.btn-primary:hover {
    background-color: #25D366;
    border-color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.plan-card .btn-primary {
    margin-top: 30px;
    padding: 1rem 2rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--light-gray);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonials-slider {
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
}

.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 1rem;
    transition: transform 0.3s ease;
    height: 100%;
    width: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
}

.author-info h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

.swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .testimonials {
        padding: 4rem 0;
    }

    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
        margin: 0.5rem;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .author-info h4 {
        font-size: 1.1rem;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 206, 209, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-info .logo {
    margin-bottom: 1rem;
}

.footer-info .logo img {
    height: 60px;
    width: auto;
}

.footer-info p {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-social h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-addresses {
    margin-top: 1.5rem;
}

.footer-addresses p {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        min-height: 70vh;
        padding: 3rem 0;
    }
    
    .hero .container {
        height: calc(70vh - 6rem);
        padding-top: 4rem;
    }
    
    .hero-slide {
        flex-direction: column;
        text-align: center;
        padding-top: 4rem;
    }
    
    .hero-content {
        max-width: 100%;
        margin-top: 2rem;
    }
    
    .hero-image {
        margin-top: 2rem;
        min-height: 250px;
        max-height: 300px;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
    }
    
    .hero-image img {
        max-width: 80%;
        height: auto;
        transform: scale(1);
        margin-right: 0;
        animation: float 6s ease-in-out infinite;
    }
    
    @keyframes float {
        0% {
            transform: scale(1) translateY(0px);
        }
        50% {
            transform: scale(1) translateY(-10px);
        }
        100% {
            transform: scale(1) translateY(0px);
        }
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-social {
        margin-top: 0;
    }

    .logo img {
        height: 45px;
    }
    
    .footer-info .logo img {
        height: 55px;
    }

    .btn-primary {
        padding: 0.8rem 1.5rem;
    }
    
    .plan-card .btn-primary {
        padding: 0.8rem 1.5rem;
    }

    .nav-links {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.slide-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero-slide {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .slide-indicators {
        bottom: 1rem;
    }
} 