/* Global Styles */
:root {
    --primary: #4092ff;
    --secondary: #24cbff;
    --light-blue: #51b1f9;
    --cyan: #44ffff;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    background-color: var(--white);
    color: #333;
}
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #333 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #2d7bff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.btn-secondary:hover {
	transform: translateY(-3px);
	background: linear-gradient(135deg, #333 0%, var(--secondary) 100%);
	border: none;
}

.btn-plan {
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-plan:hover {
    background: #2d7bff;
}
/* Hero Section */
.hero {
    color: var(--white);
    padding: 15px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 700px;
    display: flex;
    justify-content: center;
    
}
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
    padding: 0;
}
.slide.active {
    opacity: 1;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    max-width: 80%;
    margin: 0 auto;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 450px;
    flex-wrap: wrap;
}
/* Solutions Section */ 
.solutions {
    padding: 80px 0;
    text-align: center;
    background: #f9f9f9;
}
.solutions h2 {
    margin-bottom: 50px;
    font-size: 2rem;
    color: #333;
    text-align: center;
}
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.solution-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	background: linear-gradient(135deg, #33333396 0%, #24cbff94 100%);
}

.solution-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}
.solution-card h3 {
    padding: 20px 20px 10px;
    color: #333;
    font-size: 1.2rem;
}

.solution-items {
    padding: 0 20px 20px;
}
.solution-items p {
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    padding: 3px 0;
}
.solution-items i {
    margin-right: 5px;
}
@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* Features Section */
.features {
	  background: #ddd;
    padding: 80px 0;
    text-align: center;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.feature-card:hover {
    background: linear-gradient(135deg, #333 0%, var(--secondary) 100%);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #333;
}

/* Plans Section */
.plans {
    padding: 80px 0;
    background: linear-gradient(135deg, #333 0%, var(--secondary) 100%);	
    text-align: center;
}

.plans h2 {
    margin-bottom: 50px;
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
}
.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.plan-card:hover {
    background: linear-gradient(135deg, #333 0%, var(--secondary) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.plan-card.highlight {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}
.plan-card:hover h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 20px;
}

.price span {
    font-size: 1rem;
    font-weight: normal;
    color: #666;
}
.price:hover span {
    color: #fff;
	
}

.plan-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.plan-card:hover ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
	color:#fff;
}
.plan-card ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.plan-card ul li i {
    color: var(--primary);
}

/* Coverage Section */
.coverage {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('imagens/banner-fortnet.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.coverage h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.coverage p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    text-align: center;
}

.contact h2 {
    margin-bottom: 50px;
    font-size: 2rem;
    color: #333;
    text-align: center;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    text-align: left;
}

.contact-info {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

.contact-info h3 {
    margin-bottom: 30px;
    color: #333;
}

.contact-info p {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.contact-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .plan-card.highlight {
        transform: none;
    }
}